Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a click handler for a specific link, inside that I want to do something similar to the following:

window.location = url

I need this to actually open the url in a new window though, how do I do this?

share|improve this question

5 Answers

up vote 65 down vote accepted

You can like:

window.open('url', 'window name', 'window settings')

jQuery:

$('a#link_id').click(function(){
  window.open('url', 'window name', 'window settings');
  return false;
});

You could also set the target to _blank actually.

share|improve this answer
but this jquery code will not navigate to the target automatically – Amr ElGarhy May 13 '10 at 14:42
5  
_blank is the default target, so using window.open(url) should suffice – themerlinproject Dec 6 '11 at 3:10

Here's how to force the target inside a click handler:

$('a#link_id').click(function() {
    $(this).attr('target', '_blank');
});
share|improve this answer
3  
No need of using jQuery selector in the click handler so line $(this).attr('target', '_blank'); could be changed to this.target = "_blank"; Also, if the anchor links on the page can be modified to have rel="external" attributes then you could create a global click handler for the page with the jQuery selector a[rel="external"] rather than having a click handler per link selected with a#link_id – himanshu Sep 12 '12 at 20:35
This doesn't seem to work with HTTPS links though? – PKHunter Feb 10 at 16:57

You can also use the jquery prop() method for this.

$(function(){
  $('yourselector').prop('target', '_blank');
}); 
share|improve this answer

Microsoft IE does not support a name as second argument.

window.open('url', 'window name', 'window settings') Problem is 'window name'

This will work. window.open('url', '', 'window settings')

Microsoft only allows the following arguments, If using that argument at all:

_blank

_media

_parent

_search

_self

_top

check this microsoft site

share|improve this answer
1  
-1: Your licence-violating copy/paste from stackoverflow.com/a/1462500/560648 notwithstanding, that's not true. The argument is supported. It just can't contain spaces or dashes or other punctuation. Read other answers and comments on that question. – Lightness Races in Orbit Jan 8 at 16:40

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.