[thelist] Form generated in JS doesn't work in IE

kasimir-k kasimir.k.lists at gmail.com
Fri May 30 11:52:32 CDT 2008


Chris Price scribeva in 2008-05-30 18:30:
> The form displays but still returns null or no object on submit.

Yes, the options should be there allright but the select element is 
invisible to IE's form submission. To fix it, instead of this:

   mySelect.setAttribute('NAME','width');

try this:

   mySelect.name = 'width';

.k



More information about the thelist mailing list