Pop-Up Message

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to have a pop up message when a form field check box is
checked by a user?
 
Yes it is possible.
......

<script language="javascript">
function check();
{
If form.checkbox.value="1" then
{
alert("this is a check box");
}
end if
}
</script>


Then in the form on the check box field <input type="checkbox"
onclick="check();">

I don't know if this is the exact correct syntax, but something similar.
What is the reason for needing such a thing?

The "alert" gives you the typical alert box you see in Windows all the time.


"Christine" <Christine@discu
ssions.microsoft.com> wrote in message
news:[email protected]...
 
Back
Top