Skip to content

Instantly share code, notes, and snippets.

@tonybolanyo
Last active August 29, 2015 14:23
Show Gist options
  • Save tonybolanyo/1cf7bde00ad61309e031 to your computer and use it in GitHub Desktop.
Save tonybolanyo/1cf7bde00ad61309e031 to your computer and use it in GitHub Desktop.
Abrir URL en nueva ventana con elementos mínimos
$(document).ready(function(){
$('a.open-window').click(function(){
window.open(this.href, 'newWindow', 'menubar=0, scrollbars=1, width=780, height=900, top=10');
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment