Skip to content

Instantly share code, notes, and snippets.

@Diviei
Created December 8, 2012 20:39
Show Gist options
  • Save Diviei/4241823 to your computer and use it in GitHub Desktop.
Save Diviei/4241823 to your computer and use it in GitHub Desktop.
New Window No Referrer
function openNewTab(url)
{
var url = url.replace(/"/g,'%22').replace(/#/g,'%23');
var newtab = window.open();
newtab.location = 'data:text/html,<title>Redirect</title><meta http-equiv=refresh content="0;url='+url+'">';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment