Skip to content

Instantly share code, notes, and snippets.

@richardcalahan
Created April 5, 2012 22:08
Show Gist options
  • Save richardcalahan/2314565 to your computer and use it in GitHub Desktop.
Save richardcalahan/2314565 to your computer and use it in GitHub Desktop.
Prevent iOS WebApp links from opening in Safari
$(document).ready(function() {
$('a').live('click', function (e) {
e.preventDefault();
window.location = $(this).attr('href');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment