I wanted to make a button with the following JavaScript...
var button = document.createElement('button');
button.type = 'button';
button.appendChild(document.createTextNode('I am button'));
document.body.appendChild(button);
It works great, except in IE7/8 (all I have tested so far).
Message:
Object doesn't support this action
Line:185
Char:9
Code:0
URI:http://example.com/widget.js
I found a workaround...
document.body.innerHTML = '<button type="button">I am button</button>';
That is, set innerHTML and let the browser do the parsing.
Is there any other way to get this to work in IE without setting the innerHTML property?
typeattribute up front, or it has a problem. – alex Aug 30 '11 at 4:45setAttribute()– Phil Aug 30 '11 at 4:48