I have a checkbox defined as follows on a form:
<form name="form1" action="act_MList.cfm" method="post"
<td><input type="Checkbox" name="Request" value="#orderid#" align="right" onclick="checkAvailability()"></td>
</form>
How can I code the function checkAvailability so that as soon as a user checks the checkbox, a message should pop up "Are you sure you want to order".
Please help. Thanks.
<form name="form1" action="act_MList.cfm" method="post"
<td><input type="Checkbox" name="Request" value="#orderid#" align="right" onclick="checkAvailability()"></td>
</form>
How can I code the function checkAvailability so that as soon as a user checks the checkbox, a message should pop up "Are you sure you want to order".
Please help. Thanks.