Skip to content

Instantly share code, notes, and snippets.

@AlbertoMonteiro
Created March 27, 2012 18:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlbertoMonteiro/2219107 to your computer and use it in GitHub Desktop.
Save AlbertoMonteiro/2219107 to your computer and use it in GitHub Desktop.
Avoid popup blocker with bookmarklet
window.onload = function () {
document.querySelector("#abc").onclick = function() {
window.location = 'javascript:window.open("http://www.google.com.br", null, "scrollbars=yes,resizable=yes,toolbar=no,location=yes,width=550,height=420,left=685,top=0");void(0);'
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment