Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a JavaScript file from a third party developer. It has a has link which replaces the current page with the target. I want to have this page opened in a new tab.

This is what I have so far:

if (command == 'lightbox') {
 location.href="https://support.wwf.org.uk/earth_hour/index.php?type=individual";
}

Can anyone help me out?

share|improve this question

3 Answers

up vote 104 down vote accepted
window.open(
  'https://support.wwf.org.uk/earth_hour/index.php?type=individual',
  '_blank' // <- This is what makes it open in a new window.
);

Don't forget to read Jakob Nielsen's informative article :)

share|improve this answer
12  
Worth to mention: Whether a new tab or window is created, is decided by the browser (setting). – jAndy Feb 28 '11 at 12:25
1  
Thanks for the quick answer alex. Also, thanks for the article – iamjonesy Feb 28 '11 at 12:35
1  
@alex I edited this answer to make the important bit readable. If you don't approve of my formatting, may I suggest shortening the URL so that the second parameter fits within the unscrolling region? – Phrogz Sep 20 '11 at 17:51
2  
@Phrogz I do approve of your formatting :) – alex Jul 5 '12 at 0:25

You can open it in a new window with window.open('https://support.wwf.org.uk/earth_hour/index.php?type=individual');. If you want to open it in new tab open the current page in two tabs and then alllow the script to run so that both current page and the new page will be obtained.

share|improve this answer
thanks, right answer but alex beat ya to it :D – iamjonesy Feb 28 '11 at 12:38

If you want the URL opened in a tab, versus a new window, most modern browsers support this:

window.open('http://google.com','_newtab');
share|improve this answer
Can you link to something authoritative? – alex Oct 29 '12 at 10:58
2  
note, if you do this twice, the second call will reuse the tab. window.open(url) by itself opens new tabs (in chrome, at least) and doesn't reuse. – amwinter Dec 20 '12 at 17:29
2  
What this does is create a named window whose name is _newtab. This is why a second call will reuse that tab. The use of a "tab" versus a "window" is entirely determined by the browser and the user's settings in that browser… and there's really no other distinction between a "tab" and a "window" from a programmatic perspective. – eyelidlessness Mar 10 at 9:47
This is wrong - why is it being voted up? – alex Apr 16 at 20:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.