jquery - want to delay closing of fancybox window -
I want to automatically turn off a fancybox iframe, but I want to delay it.
$ (document) .ready (function () {original. $. Fancybox.close ();}); The code above will close the window successfully, but I want to add a delay, so that they can read the message that appears before it automatically closes for them.
You can use:
setTimeout ("parent. $ Fancybox.close () ", 1000);
Comments
Post a Comment