Tuesday, April 22, 2008

javascript

How to hide a button:
-----------------------
function hide()
{
document.form1.check.style.visibility = 'hidden';
return;
}

----------------------

Call the above function in button Onclick="hide();"

No comments: