Disable form submit event
Description
The following code shows how to disable form submit event.
Example
<html>
<head>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {<!--from w w w. j a v a 2 s.c o m-->
$("form").submit(function() {
return false;
});
});
</script>
</head>
<body>
<form>
<input type="text" />
</form>
</body>
</html>