Search code examples
htmlpopupwindowoverlay

How can i display a overlay popup window when page is loading


i want to try to display a overlay popup window when my main page is finished with loading.

The secenario should be. A customer comes on my main page and a popup comes over and shows him a external page (event.php) in this popup. The background of this popup should be transparent.

Hope you could help me :(


Solution

  • Using jQuery you can do:

    $(document).ready(function(){
       setTimeout function(){
          PopUp();
       },5000); //5 seconds
    });
    

    Then for PopUp function you can use this plugin: http://www.jacklmoore.com/colorbox/

    Hope this help.