I've been trying to check if my input[type=hidden] has an checked="checked" attribute. That input field looks like this:
<input type="hidden" checked="checked" name="1_WILLINFOS">
In Firefox it works just fine by using:
jQuery(selector).find('input[name=1_WILLINFOS]').attr('checked') == "checked"
But IE10 always gives me a false.
By now I tried to use the following:
.attr("checked") == "checked"
.attr("checked") == true
.is(':checked')
With all of them giving me a false.
Any ideas? Thanks