Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When calling window.open() in a iOS web app, the page opens in the web app instead of mobile safari.

How can I force the webpage to open in mobile safari?

Note: Using straight <a href> links is not an option.

share|improve this question
You mean the <a href="stackoverflow.com"; target="_blank">Go to SO</a> doesn't work? – JOM Jan 12 '12 at 10:45

2 Answers

up vote 21 down vote accepted

This is possible. Tested with iOS5 stand-alone web app:

HTML:

<div id="foz" data-href="http://www.google.fi">Google</div>

JavaScript:

document.getElementById("foz").addEventListener("click", function(evt) {
    var a = document.createElement('a');
    a.setAttribute("href", this.getAttribute("data-href"));
    a.setAttribute("target", "_blank");

    var dispatch = document.createEvent("HTMLEvents")
    dispatch.initEvent("click", true, true);
    a.dispatchEvent(dispatch);
});

Can be tested here: http://www.hakoniemi.net/labs/linkkitesti.html

share|improve this answer
This does not work in the Facebook app browser on iOS 4.3.3. – Napalm May 31 '12 at 17:22
But when i want to return value from the opened window then it is not working – NullPointerException Aug 6 '12 at 10:51
1  
@Napalm make sure to add a semi-colon at the end of the line var dispatch = ... – laker Oct 3 '12 at 21:42
Shouldn't it be <div id="foz" data-href="http://www.google.fi">Google</div> - Opening a <div> and closing it with a </a> doesn't make much sense. And what's the </li> at the end? – Timo Dec 14 '12 at 13:21
@valmar, you're right. This example contained typos, I fixed them. – zvona Dec 14 '12 at 23:10
show 1 more comment

Turns out it is NOT POSSIBLE to escape the iOS web app with a JavaScript window.open(). If you want a link to open in mobile safari you have to use <a href> links.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.