Search code examples
jquerycolorbox

jQuery colorbox - close iframe with onclick, can I time this event


My iframe is being closed by a button, with this piece of code:

parent.jQuery.colorbox.close()

like

<button type="submit" onclick="parent.jQuery.colorbox.close()" ....

can I somehow time this event? So it will close after 2sec. ex?

I'am using the ColorBox lib.


Solution

  • <button type="submit" onclick="setTimeout(parent.jQuery.colorbox.close,2000)" ...
    

    setTimeout will delay the execution of anything by a specified number of milliseconds, in this case 2000.