Friday, November 11, 2011

How to redirect form one site to distination site using java Script, Content editor webpart

Write below code on Content Editor Webpart
<script language="javascript">
location.replace("http://servname:9999/sites/abc/123");
</script>

With message

<html>

 <body>
<h1 style="color:red">This site has been moved to "http://servname:9999/sites/abc/123". Please Update on your Favorites.</h1>
   </body>


   <head>
         <script type="text/javascript">
         <!--
            function Redirect() {
               window.location="http://servname:9999/sites/abc/123";
            }
         
            document.write("You will be redirected to new site in 10 sec.");
            setTimeout('Redirect()', 10000);
         //-->
      </script>

   </head>
 
  </html>

No comments:

Post a Comment