Any Way to Redirect to Two Sites from one Page

4 replies
Not sure where to post this, i thought there was a technical discussion thread on the forum somewhere. Couldnt find it.

Does anyone know how to redirect to 2 different sites at once from one page.

ex. www.xyz.com/whatever.php

once link is clicked, two windows pop open to two different pages/sites.

Is this possible?

Thanks

Robert
#page #redirect #sites
  • Profile picture of the author williamrs
    I think you can get generate 2 javascript popups, or generate 1 pop and redirect the user in the same window to display the other site.


    William
    Signature
    Steal My Profit Strategy



    >> Download Now <<
    {{ DiscussionBoard.errors[2636708].message }}
    • Profile picture of the author rvrabel2002
      Originally Posted by williamrs View Post

      I think you can get generate 2 javascript popups, or generate 1 pop and redirect the user in the same window to display the other site.


      William
      Any way you could guide me through the process? Im kind of a techno-idiot...

      Rob
      Signature

      {{ DiscussionBoard.errors[2638398].message }}
      • Profile picture of the author Filter
        Try this, does exactly what you want:

        HTML Code:
        <html>
        <head>
        <script type="text/javascript">
        <!--
        function myPop() {
        window.open( "http://www.google.com/" )
        window.open( "http://www.yahoo.com/" )
        }
        //-->
        </script>
        </head>
        <body>
        <A HREF="javascript:void(0)"
        onclick="myPop()">
        Open 2 windows</A>
        </body>
        </html>
        {{ DiscussionBoard.errors[2639165].message }}
  • Profile picture of the author thegreatvinay
    thank you
    by clicking the open 2 windows only the two windows are opening... :confused:
    but i want the page to be redirected automatically to two pages (like redirecton using meta equiv=-0)... not by clicking... help me...
    {{ DiscussionBoard.errors[3681813].message }}

Trending Topics