Skip to content

Instantly share code, notes, and snippets.

@stramargio
Created May 20, 2015 17:00
Show Gist options
  • Save stramargio/da5f22c848b07c3867f4 to your computer and use it in GitHub Desktop.
Save stramargio/da5f22c848b07c3867f4 to your computer and use it in GitHub Desktop.
open just a link with inappbrowser
$('iframe#maincontent a.TreeItem').click(function(e) {
e.preventDefault;
var targetURL = $(this).attr('href');
window.open(targetURL, '_system');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment