> To create non-text input elements in IE you have to use the following:
>
> document.createElement("<input type=submit>");
In contrast to this: You cannot create <button> elements with
document.createElement in IE, but have to use innerHTML for that...
see here:
http://stilbuero.de/demo/create_button_bug/dom.html (createElement, does
not work in IE)
http://stilbuero.de/demo/create_button_bug/inner.html (innerHTML, works
in IE)
Never ending story...
-- Klaus
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/