Side navigation
#9470 closed bug (duplicate)
Opened May 31, 2011 04:56PM UTC
Closed May 31, 2011 05:51PM UTC
Last modified May 31, 2011 05:51PM UTC
The unwrap() function unchecks checkboxes
Reported by: | anonymous | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | manipulation | Version: | 1.5.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I am using the unwrap function as a means of making certain content viewable. The wrapper is set to a visibility of hidden. Once removed, the content, which by default is visible, is revealed. All works perfectly in Firfox and Chrome. In IE 6, however, the checkboxes are becoming unchecked immediately after they are unwrapped. I used the following to verify that it was in fact unwrap():
alert($([checkbox]).attr('checked')); yields true
$([checkbox]).unwrap();
alert($([checkbox]).attr('checked')); yields false
Not sure what's causing this. I can probably manage a workaround, but this shouldn't be happening. I've noticed problems with selections becoming unselected in the same manner, but haven't tested. Maybe this is fixed in later versions. Will have to check.