Opening a new tab on iPad Safari using javascript

I need to open a new browser tab on iPad safari using javaScript, I tried window.open (), but this does not work, I am using iPad 2 with iOS 5.1, any help would be appreciated

+3
source share
1 answer

I do not think that you can directly control the opening of a new window in a new tab using only the method window.open; you could have a hidden attribute link target="_blank"and then simulate a click event with javascript on that anchor.

0
source

All Articles