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.
|
I found JavaScript solution in iWebKit framework:
|
|||||||||||||||||||
|
|
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:
|
|||||||||||||||||
|
|
If you are using jQuery, you can do:
|
|||||||||||||||||||||
|
|
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.
|
|||||||
|
|
Maybe you should allow to open links in new window when target is explicitly set to "_blank" as well :
|
|||||
|
|
If using jQuery Mobile you will experience the new window when using the data-ajax='false' attribute. In fact, this will happen whenever ajaxEnabled is turned off, being by and external link, by a $.mobile.ajaxEnabled setting or by having a target='' attribute. You may fix it using this:
(Thanks to Richard Poole for the live() method - wasn't working with bind()) If you've turned ajaxEnabled off globally, you will need to drop the [data-ajax='false']. This took me rather long to figure out as I was expecting it to be a jQuery Mobile specific problem where in fact it was the Ajax linking that actually prohibited the new window. |
|||
|
|
|
This is working for me on iOS 6.1 and with Bootstrap JS links (i.e dropdown menus etc)
|
|||
|
|
|
This code works for iOS 5 (it worked for me): In the head tag:
In the link that you want to be opened in the same window:
I got this code from this comment: http://mobile.tutsplus.com/tutorials/iphone/iphone-web-app-meta-tags/comment-page-1/#comment-10699 |
|||
|
|
|
You can also do linking almost normally:
And you can remove the hash tag and href, everything it does it affects appearance.. |
|||
|
|
|
Here is what I'd use for all links on a page...
If you're using jQuery or Zepto...
|
|||
|
|
|
For those with Twitter Bootstrap and Rails 3
Delete links are still working this way. |
|||
|
|
