Horje
open new tab with javascript Code Example
javascript open link in new tab
function NewTab() { 
            window.open( 
              "https://www.yourURL.com", "_blank");
}
open new tab with javascript
window.open(url,'_blank');
javascript open in new window not tab
//open in new window, not new tab
window.open('https://www.codegrepper.com', '_blank', 'toolbar=0,location=0,menubar=0');
open link in new tab javascript
<a rel="nofollow" href='https://google.com/' target='_blank'>
  Google site
</a>




Javascript

Related
how to send json in js with post Code Example how to send json in js with post Code Example
async function fetchJson Code Example async function fetchJson Code Example
How to find the max id in an array of objects in JavaScript Code Example How to find the max id in an array of objects in JavaScript Code Example
fetch await Code Example fetch await Code Example
jquery datatable get data array Code Example jquery datatable get data array Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7