Re: 'document.myform.finish' is null or not an object : Line 91, Char 2
Available news archives: comp.lang.tcl - comp.lang.python - comp.security.firewalls - sci.crypt - comp.lang.php - comp.lang.javascript
Google
 
Web news.hping.org


comp.lang.javascript archive

Re: 'document.myform.finish' is null or not an object : Line 91, Char 2

From: <parksch2@hotmail.com>
Date: Wed Aug 31 2005 - 19:02:14 CEST

Try this:

function able(dropdown)

{
        var myindex = document.getElementById("finish").selectedIndex;
        if(myindex == 1) {
                document.getElementById('BalStepDiv').style.visibility="visible";
                document.getElementById('BalStepDiv').focus();
        }
        else {
                document.getElementById('BalStepDiv').style.visibility="hidden";
        }
}
Received on Tue Oct 18 03:15:21 2005