Skip to content Skip to sidebar Skip to footer

How Can I Indicate That A Popup Has Been Blocked By Safari?

In Safari for iPad, if the popups are disabled, is there any way to get the bar at the top..like in IE which says '...website trying to open popup..' I mean the user can at least c

Solution 1:

The only way that I know of to get a new window to open up in Mobile Safari is to use the target="_blank" (and I guess target="_new") attribute.

<a href="my_popup_page.html" target="_blank">Open 'popup'</a>

Post a Comment for "How Can I Indicate That A Popup Has Been Blocked By Safari?"