I have problem with web after adding icon to Home Screen. If the web is launched from Home Screen, all links will open in new window in Safari (and lose full screen functionality). How can I prevent it? I couldn't find any help, only the same unanswered question.

link|improve this question

feedback

7 Answers

up vote 24 down vote accepted

I found JavaScript solution in iWebKit framework:

var a=document.getElementsByTagName("a");
for(var i=0;i<a.length;i++)
{
    a[i].onclick=function()
    {
        window.location=this.getAttribute("href");
        return false
    }
}
link|improve this answer
This was a GODSEND! Thank you so much! – Alex Jan 7 '11 at 0:09
4  
To state the obvious and make this explicit: iOS treats links in Web Apps as something that should be opened in Safari, and javascript location changes as an in-app action that is allowed to saty in the web-app. The code above works because it prevents the default link behavior, replacing it with a js nav call. – Oskar Austegard Sep 15 '11 at 13:11
Is there an example of the opposite? Forcing an iPhone web app to open a page in Safari eventhough it's a javascript location change? – tkahn Jan 4 at 16:23
This method didn't work in home screen webapps on iOS 5. – tim Feb 25 at 9:06
@Pavel thank you for mentioning iwebkit :). Helps to get some traffic :D – SnippetSpace Mar 23 at 14:42
show 2 more comments
feedback

If you are using jQuery, you can do:

$("a").click(function (event) {
    event.preventDefault();
    window.location = $(this).attr("href");
});
link|improve this answer
14  
$('a').live('click', function (event) { ... }); might be a better choice. – Richard Poole Apr 3 '11 at 18:18
Please explain why .live() might be better? – John Catterfeld Jul 25 '11 at 11:11
3  
live will bind the event to all links including those that don't exist yet, click will only bind to ones that currently exist – msaspence Jul 29 '11 at 13:14
thanks! lifesaver. I just spent hours trying to figure out why safari was loading all the time. – Steve Aug 25 '11 at 2:47
For Rails 3.1 apps, this seems to break traditional delete links and redirects them to the show action instead. – Clay Dec 27 '11 at 15:37
show 2 more comments
feedback

The other solutions here either don't account for external links (that you probably want to open externally in Safari) or don't account for relative links (without the domain in them).

The html5 mobile-boilerplate project links to this gist which has a good discussion on the topic: https://gist.github.com/1042026

Here's the final code they came up with:

<script>(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&&(d.href.indexOf("http")||~d.href.indexOf(e.host))&&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone")</script>
link|improve this answer
1  
Excellent !!!!! – Disco Nov 24 '11 at 14:12
Nothing else worked on iOS 5 but this did! – tim Feb 25 at 9:11
This works brilliantly in iOS5, thanks. – Matt White Mar 23 at 15:58
This works great except for one page, the "Contact us" page for our company. Instead of showing the page, it opens the application "Maps" and pinpoints our office. What could be causing this, and how can we fix it? – Jonathan Apr 5 at 12:50
@Jonathan I'm not sure. Does it not happen if you remove this script? Maybe post a link to your site? Or open a new question, that might be better. – rmarscher Apr 13 at 2:52
show 1 more comment
feedback

Based on Davids answer and Richards comment, you should perform a domain check. Otherwise links to other websites will also opened in your web app.

$('a').live('click', function (event)
{      
    var href = $(this).attr("href");

    if (href.indexOf(location.hostname) > -1)
    {
        event.preventDefault();
        window.location = href;
    }
});
link|improve this answer
This didnt work on ios 5. – tim Feb 25 at 9:11
Good addition to the above solutions. Needed a domain check to keep people from opening outside sites in the app. Also, works on iOS 5. – Ian Apr 18 at 17:03
feedback

This code works for iOS 5 (it worked for me):

In the head tag:

<script type="text/javascript">
    function OpenLink(theLink){
        window.location.href = theLink.href;
    }
</script>

In the link that you want to be opened in the same window:

<a href="(your website here)" onclick="OpenLink(this); return false"> Link </a>

I got this code from this comment: http://mobile.tutsplus.com/tutorials/iphone/iphone-web-app-meta-tags/comment-page-1/#comment-10699

link|improve this answer
feedback

Maybe you should allow to open links in new window when target is explicitly set to "_blank" as well :

$('a').live('click', function (event)
{      
    var href = $(this).attr("href");

    if (href.indexOf(location.hostname) > -1 && $(this).attr("target") != "_blank")
    {
        event.preventDefault();
        window.location = href;
    }

});
link|improve this answer
feedback

The easiest way I've found is by making a whole div clickable...

<div class="menu" style="cursor:pointer" onClick="location.href='file.php'">

Need both style and onClick elements. Easy as pie! Nothing else to add.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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