how to stop page from refreshing javascript code example
Example 1: how to refresh a web page automatically in javascript
<html>
<head>
<script type = "text/JavaScript">
<!--
function AutoRefresh( t ) {
setTimeout("location.reload(true);", t);
}
</script>
</head>
<body onload = "JavaScript:AutoRefresh(5000);">
<p>This page will refresh every 5 seconds.</p>
</body>
</html>
Example 2: jquery submit refresh page stop
$("#prospects_form").submit(function(e) {
e.preventDefault();
});
Example 3: javascript reload page without refresh
<a href="javascript:window.top.location.reload(true)" class="continue">Continue</a>