Hi Everyone,
Every time I create a radio button set and append it to an element in internet explorer I the radio button doesn't allow for it to be checked. It works fine in mozilla.
Here's a slimmed down example that produces the lock.
Whenever the element is appended in IE it doesn't allow itself to be selected.Code:function addRadio(e){ var i = document.createElement('input'); i.type = 'radio'; i.value = 1; document.getElementById(e).appendChild(i); }
Any suggestions,
Thanks
Nick




Bookmarks