Hi,
 
My code is like the following, when I click the checkbox, nothing happened (the 'add' 
button suppose to get disabled). I put a alert statment in the javascript, and didn't 
get it showed when click the checkbox... seems the function didn't get called at all, 
can anybody tell me why? Thanks a lot!
 
<SCRIPT LANGUAGE="JavaScript">
function check(element) {
alert("getting called");
document.myform.add.disabled = ( element.checked );
}
<html:form action="myAction" name="myForm">
<html:submit propery="add" value="Add"/>
<input type="checkbox" onclick="check(this)" name="myname" value="myvalue"/>




---------------------------------
Do you Yahoo!?
Free Pop-Up Blocker - Get it now

Reply via email to