News

Hello readers , today in my blog I would like to discuss about the difference b/w the onClick and onSubmit Events . Below is the difference b/w them :- Below is a example showing the use of onSubmit() ...
<form method="POST" action="/action"> <input type="submit" value="Submit the form" onclick="alert('hello!'); return false;" /> </form> With the onclick handler in place, the button now opens a ...