Skip to content Skip to sidebar Skip to footer

Javascript For Iphone To Open In Safari From Non-default Ios Browser

'googlechrome://www.lego.com' opened in mobile Safari will switch to Google Chrome iOS app to open the URL. This allows for scriptlets like the one below, which allows you to open

Solution 1:

The answer is yes. Courtesy or MacStories (http://www.macstories.net/tutorials/chrome-for-ios-send-a-webpage-back-to-safari-via-bookmarklet/), I found this code:

window.location='googlechrome-x-callback://x-callback-url/open/?url='+encodeURIComponent(location.href)+'&x-source=Safari&x-success='+encodeURIComponent(location.href);

Execute that code, go to your homescreen, reopen Chrome, and there's a magical back button to go back to Safari. This may not be exactly what you want, but it works... Kink of.

Good luck!

Update: Here's a screenshot: Link (Sorry, I don't have enough reputation to put it right in the post): http://i.stack.imgur.com/OR175.jpg

Update: It seems that the functionality to do this has broken. Thank you!

Post a Comment for "Javascript For Iphone To Open In Safari From Non-default Ios Browser"