User Tag List

3792Views
Results 1 to 4 of 4
  1. #1
    Member
    Join Date
    Jan 2018
    Location
    Morocco
    Posts
    14
    Coins
    2
    Thumbs Up
    Received: 10
    Given: 0

    Redirects Traffic

    Hi ,
    sorry for the short post , but I need help ASAP , I want to make multiple redirects (like auto surf) , for example when you click my link you will watch google.com then after 5 sec you will watch youtube.com etc , any one have a script or a javascript or html or anything that could help me

    0 Not allowed! Not allowed!

  2. #2
    Wind Guardian Angemon's Avatar


    Join Date
    Jul 2014
    Posts
    2,571
    Coins
    813
    Thumbs Up
    Received: 1,186
    Given: 465
    @ace130 you can try this
    PHP Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <
    html>
        <
    head>
        <
    meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
            <
    title>Changing Pages... Please Wait</title>
    <
    script type="text/javascript">
    var 
    frames = Array('http://www.google.com/'15,
        
    'http://www.yahoo.com/'37,
        
    'http://www.ask.com/'12,
        
    'http://www.dogpile.com/');
    var 
    0len frames.length;
    function 
    ChangeSrc()
    {
      
    document.getElementById('frame').src frames[i++];
      if (
    >= len) return; // no more changing
      
    setTimeout('ChangeSrc()', (frames[i++]*1000));
    }
    window.onload ChangeSrc;
    </script>
    </head>
        <body>
        <iframe src="" name="frame" id="frame" width="100%" height="100%"></iframe>
        </body>
    </html> 

    0 Not allowed! Not allowed!



  3. #3
    Member
    Join Date
    Jan 2018
    Posts
    23
    Coins
    1
    Thumbs Up
    Received: 6
    Given: 0
    Add to tag <Head> this meta tag
    <meta http-equiv="refresh" content="0 ; url=your_website" />
    0 mean : 0 second

    0 Not allowed! Not allowed!

  4. #4
    Member
    Join Date
    Jan 2018
    Location
    Morocco
    Posts
    14
    Coins
    2
    Thumbs Up
    Received: 10
    Given: 0
    Thanks I think this should work , but I don't think Google alows iFraming so it can't be done. Anyway thank for help.

    0 Not allowed! Not allowed!

Tags for this 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
  •