Hi, I am wondering whether it is possible to have two onClick events for the one button in a form. I want to first "saysomething" (as in a message) and once the user clicks okay on the message I would like it to refresh the page.
My code is below but it does not work, can anyone help?
<form action="0">
<input type="button" value="Send Form"
onclick="saySomething('Your form has been sent. Thank-you for your input!')
onClick="window.location.reload()">
</form>
Any help appreciated. Mel



