delay of popup on page load

delay of popup on page load

Hi,

I have the code below which pops up a pop up on page load.

I simply want to wait for 10 seconds after the page load for the pop up to appear. Is there a jquery way that I could add to the below code to make this work?

thanks,
Kindly
Florian

  1. <script type="text/javascript">
  2.   jQuery(document).ready(function(){
  3.  
  4.     jQuery.lightbox("www.mydomain.com/popup.html?lightbox[width]=650&lightbox[height]=480");
  5.   });
  6. </script>