Side navigation
#9755 closed bug (invalid)
Opened July 06, 2011 07:34AM UTC
Closed July 06, 2011 12:47PM UTC
checkbox enabling issue under IE
Reported by: | pancheri.damien@gmail.com | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.next |
Component: | unfiled | Version: | 1.6.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Hello,
I have a page in which there are several checkboxes.
They can be disabled or enabled all at a time by clicking on another checkbox.
It works fine with the jquery 1.4.2.
With jquery 1.6.2, it fails when I use
$("#mychkbox").change(function(){ $("#checkboxes").removeAttr('disabled'); });
I noticed this weird behaviour under IE8. It works fine under Chrome and FF 3.6
Maybe I do something wrong?
Hope this helps.
Dams
Attachments (0)
Change History (1)
Changed July 06, 2011 12:47PM UTC by comment:1
resolution: | → invalid |
---|---|
status: | new → closed |
Don't remove the
disabled
attribute. Instead set thedisabled
property tofalse
:$("checkbox").prop("disabled", false)