Hi,
I want to hide a select box on click of the CLose Button.
if(isset($_POST['Close'])){
echo 'Test';
$sJavaScript = "function HideFields()
document.f1.LstSchoolName.style.visibility = 'hidden'";
}
This routine does get executed cos I the echo statemnt is shown except my listbox is not hiding, what am I doning wrong.
I want to hide a select box on click of the CLose Button.
if(isset($_POST['Close'])){
echo 'Test';
$sJavaScript = "function HideFields()
document.f1.LstSchoolName.style.visibility = 'hidden'";
}
This routine does get executed cos I the echo statemnt is shown except my listbox is not hiding, what am I doning wrong.
Comment