Delay jquery pop up 10 sec after page load

Hey,

I have a working jquery pop up that opens up on page load.
I would like to wait 10 seconds before the pop up comes up.

here is my current code.

jQuery(document).ready(function(){

jQuery.lightbox("http://mydomain.com/scripts/popup.html?lightbox[width]=650&lightbox[height]=480");

});

is there a jquery code that would do that for me?

setTimeout :slight_smile:

awesome.
that’s the on.
thank you