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.
|
feedback
|
|
I found JavaScript solution in iWebKit framework:
| |||||||||||||
feedback
|
|
If you are using jQuery, you can do:
| |||||||||||||||
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:
| |||||||||||||
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.
| |||||
feedback
|
|
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 | |||
|
feedback
|
|
Maybe you should allow to open links in new window when target is explicitly set to "_blank" as well :
| |||
|
feedback
|
|
The easiest way I've found is by making a whole div clickable...
Need both style and onClick elements. Easy as pie! Nothing else to add. | |||
|
feedback
|