| Previous | Home | Next |
There may be several reasons to redirect to a new page from the original page.JavaScript you can do client side redirection.
javascript used to page redirect. is very simple to do a page redirect using JavaScript at client side .
Redirecting a web page means, taking user to new location.
There are Many reason to a page redirect
A simple example of page redirect
<html>
<body>
<script>
window.location.replace("http://www.r4r.co.in/corejava");
</script>
</body>
</html>
Output :
when user Run of this program then its direct hit of r4r website
| Previous | Home | Next |