Skip Popup Blocker and Auto Click a Link which Open in a New Window

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Skip Popup Blocker and Auto Click a Link which Open in a New Window


    <head>

    <script>
    function autoClick(){
    document.getElementById('linkToClick').click();
    }
    </script>


    </head>


    call:

    <body onload="setTimeout('autoClick();',2000);">

    <a id="linkToClick" href="http://biobeo.com" target="_blank"></a>

    </body>
    Post If you made any better solution on this..
    Last edited by BioBeo; 02.05.11, 18:43.

    #2
    no alternatives ?

    Comment

    Working...
    X