Dans JavaScript Advertising sur le site Web uniquement pendant 5 secondes

<!DOCTYPE html>
<html>
   <body>
      <script>
         setTimeout(myURL, 5000);
         function myURL(){
            window.open('http://qries.com');
         }
      </script>
      <p>Web page loads after 5 seconds.</p>
   </body>
</html>
Outrageous Owl