Skip to content

Instantly share code, notes, and snippets.

@boomboompower
Created November 3, 2016 23:38
Show Gist options
  • Save boomboompower/7318cca4e9c380ae87d5bc7ec5cac744 to your computer and use it in GitHub Desktop.
Save boomboompower/7318cca4e9c380ae87d5bc7ec5cac744 to your computer and use it in GitHub Desktop.
Opens a popup for the specified url, if null simply open a popup for the current site.
javascript:(
function() {
var doit = prompt("Enter a sitename");
var args = "https://" + doit;
var params = "width=1100,height=550,left=75,top=20,resizable=yes,scrollbars=yes";
if (doit != null) {
if (doit.indexOf('http') >= 0) args = doit;
window.open(args, "_blank", params);
} else {
window.open(window.location.href, "_blank", params);
}
}
)();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment