select1 = document.MainForm.selStatus;
var size = select1.length;
for (var i = size-1; i >= 0; i--)
{
// remove won't work with Netscape 7, Firefox
select1.options.remove(i);
}
The above codes to remove all options in a html select control work in IE but not Firefox. How can the options in a html select control be removed?