While appending input element with checked attribut as below code
$("#addcheckbox").append("<input type='checkbox' value=\"Hi\" checked='checked'>"); // addcheckbox is div
In IE the rendered element looks like
<input type="checkbox" CHECKED="" value="Hi"/>
This occurs after using jquery 1.7.2 before that it was like below
<input type="checkbox" CHECKED="checked" value="Hi"/>
because of this, i am facing lot if issues with jquery templating.
any help
Thanks
.attr()and set the checked attribute explicitly, you don't really need the escape sequences there