Is there any way to get radio buttons checked upon appending in IE7?
What seems to work in every browser, doesn't look like it works in IE6,7 despite reading everywhere that I'm doing it correctly. I have absolutely no idea why it's not working.
var $itemVariantRowRadio = $("<input/>")
.attr("type", "radio")
.attr("name", "itemvariant")
.addClass("itemvariant")
.val('whatever');
$itemVariantRowRadio.attr('checked', 'checked');
$itemVariantRow.append($itemVariantRowRadio)
Now if I do a console.log($itemVariantRowRadio.attr('checked')
in IE6/7 then it says that it's set to TRUE but the radio doesn't actually get checked or pick up as checked.
Nightmare! Anyone else come across this and have any sort of fix?
MSIE doesn't allow you to change the
type
of aninput
element once it has been created.See http://bugs.jquery.com/ticket/1536 and http://api.jquery.com/jQuery/#jQuery2
Just create it so:
You don't need to trigger the click event if you apply the checked attribute after you append it to the dom: http://jsfiddle.net/XjHUe/2/
Try:
$itemVariantRowRadio.not(':checked').click().change();
So you actually click the checkbox just like you would do as a user with the mouse.
not(':checked')
will get you sure it was not already checked before. And trigger the change event afterwards, as jQuery click does not do that by itself.If in jQuery >= 1.6:
Use
prop
as seen here: .prop() vs .attr()If in jQuery < 1.6:
ALSO:
Try creating your element like so:
See fiddle: http://jsfiddle.net/maniator/6CDf3/
An example with 2 inputs appended: http://jsfiddle.net/maniator/6CDf3/2/