Skip to content

Instantly share code, notes, and snippets.

@Novack
Forked from rheajt/Code.gs
Created December 5, 2019 18:30
Show Gist options
  • Select an option

  • Save Novack/767945bfee87e7574b8b13a4350e63bc to your computer and use it in GitHub Desktop.

Select an option

Save Novack/767945bfee87e7574b8b13a4350e63bc to your computer and use it in GitHub Desktop.
google apps script to open a new website in a new window
function openTab() {
var selection = SpreadsheetApp.getActiveSheet().getActiveCell().getValue();
var html = "<script>window.open('" + selection + "');google.script.host.close();</script>";
var userInterface = HtmlService.createHtmlOutput(html);
SpreadsheetApp.getUi().showModalDialog(userInterface, 'Open Tab');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment