Skip to content

Instantly share code, notes, and snippets.

@cTxplorer
Created November 1, 2022 05:29
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 cTxplorer/4ee3a0fbf890a0e18ed616ee3a174148 to your computer and use it in GitHub Desktop.
Save cTxplorer/4ee3a0fbf890a0e18ed616ee3a174148 to your computer and use it in GitHub Desktop.
A simple script with a function that opens an URL in new tab
// open an url in new tab
function openNewTab(url = '') {
window.open(url, 'randomtabname');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment