Hey,
I have a checkbox like
<input type="checkbox" name="chkRB" onclick="javascript:display();">
I have a button which I don't want to show unless user clicks on any of these check boxes
I set
<input type="image" src="btnnormal.gif" style="display:none" id="btnDecline" name="btnDecline">
then in javascript I have
function display(){ document.frmGadgetRB.btnDecline.style.display = ""
}
And its not working. Please tell me what to do???
I have a checkbox like
<input type="checkbox" name="chkRB" onclick="javascript:display();">
I have a button which I don't want to show unless user clicks on any of these check boxes
I set
<input type="image" src="btnnormal.gif" style="display:none" id="btnDecline" name="btnDecline">
then in javascript I have
function display(){ document.frmGadgetRB.btnDecline.style.display = ""
}
And its not working. Please tell me what to do???