Answers for "include redirection location in js"

50

js redirect

window.location.href = "http://mywebsite.com/home.html";
Posted by: Guest on July-18-2019
0

javascript redirection

<html>
  <head>
    <script type="text/javascript">
      function RedirectionJavascript(){
        document.location.href="http://manouvellepage.com";
      }
   </script>
  </head>
  <body onLoad="setTimeout('RedirectionJavascript()', 2000)">
     <div>Dans 2 secondes vous allez être redirigé vers http://manouvellepage.com</div>
  </body>
</html>
Posted by: Guest on October-26-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language