Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Last active March 31, 2016 15:08
Show Gist options
  • Select an option

  • Save hsleonis/3c090b5566152cf2590ae40ef6806721 to your computer and use it in GitHub Desktop.

Select an option

Save hsleonis/3c090b5566152cf2590ae40ef6806721 to your computer and use it in GitHub Desktop.
Create popup window with native js
/**
* Syntax: window.open(URL,name,specs,replace)
* Reference: http://www.w3schools.com/jsref/met_win_open.asp
*/
var URL = 'http://w3schools.com';
window.open( URL, "wo_map_console","height=650,width=800,toolbar=no,statusbar=no,scrollbars=yes").focus();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment