|
Javascript Redirect A URL Redirection (or URL Redirect) usually means that a web page, as soon as it is loaded, redirects to another one. This might be a useful technique in the situation when the content on your webpage has moved to another page. In JavaScript, it is a usual way to script a redirect by using the same code used by loading a webpage. The standard code would look like: document.location.href='http://wanweb.net';
|