The following code works great in IE, but I can't get it to work in netscape 7....
I get a "document.forms has no properties" error from the netscape js console.... I've been pounding my head on this one for awhile... help!!
function checkForm( )
{
var f = document.forms[0];
for ( var i = 0; i < f.elements.length; i++ )
{
//clipped...
//performing stuff on f.elements
}
}
I get a "document.forms has no properties" error from the netscape js console.... I've been pounding my head on this one for awhile... help!!
function checkForm( )
{
var f = document.forms[0];
for ( var i = 0; i < f.elements.length; i++ )
{
//clipped...
//performing stuff on f.elements
}
}