Here is an example page: http://vincent-massaro.com/modal/modaltest.html
I am trying to have a window open with Jquery when a link is clicked, but delay the popup so that a message is first displayed before the popup happens. As you can see from the example the window.open happens not on the click, but on the fade, so this triggers a popup blocker because it is not being triggered by the user click input. Is it possible to move the window.open and delay it so that when the link is clicked, the window.open and the modal message fire off at the same time, but the window.open is delayed 5 seconds so that it doesn't trigger the popup blocker? Thanks!