+ Reply to Thread
Results 1 to 3 of 3

Thread: Forwarding to one site, then another?

  1. #1
    DNF Member
    Last Activity 03-08-2010 10:01 AM
    J2theIZZO's Avatar

    Join Date
    Jan 2005
    Location
    UK
    Country
    Posts
    385
    DNF$
    1,419
    Trader Rating: 29 reviews

    Forwarding to one site, then another?

    I would like to have a timed redirect to one site, then another site.

    Example:

    DomainA forwards straight to DomainB (Which I have no control over) waits 2 seconds then forwards to DomainC (Which I also have no control over)

    Is this possible, and if so how?

    $10 Paypal to the person who can give me some example code


  2. #2
    www.LOL.biz
    Last Activity Today 11:54 AM
    Bender's Avatar

    Join Date
    Apr 2004
    Location
    .ro
    Country
    Posts
    1,882
    DNF$
    5,749
    Trader Rating: 14 reviews

    Re: Forwarding to one site, then another?

    I believe this is it...why do you need it?

    Code:
    <html>
    <head>
    <script language="JavaScript1.2">
    function redirect()
    {
    top.location.href='http://www.myspace.com';
    }
    function onLoad()
    {
    setTimeout("redirect()", 3000);
    }
    onLoad();
    </script>
    </head>
    <frameset rows="0%,100%" border="0" framespacing="0" frameborder="0">
    <frame src="" name="inv" id="inv">
    <frame src="http://www.myblog.com" name="myframe" id="myframe">
    </frameset>
    </html>
    
    Last edited by IT Web Team; 01-13-2006 at 06:05 AM.


  3. #3
    Gold Lifetime Member
    Last Activity 09-18-2007 07:24 PM
    manueld64's Avatar

    Join Date
    May 2005
    Location
    Arizona
    Posts
    174
    DNF$
    446
    Trader Rating: 0 reviews

    Re: Forwarding to one site, then another?

    Yeah, has to be in a frame.


+ Reply to Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts