Force Link to Open in Mobile Safari from a Web App With JavaScript

Force link to open in mobile safari from a web app with javascript

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);
}, false);

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

Safari Webapp force to open Safari when click another link

I solved it by using javascript to redirecting instead of using a tag.



Related Topics



Leave a reply



Submit