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 am making a "share button" to share the current page. I would like to take the current page URL and open it in a new window. I have the current URL part working but can't seem to get the next part working.

I'm struggling with the syntax. I would like to specify the new window size to width=520, height=570.

Something like:

<a target="_blank" href="https://www.linkedin.com/cws/share?mini=true&amp;url=[sub]" onclick="this.href = this.href.replace('[sub]',window.location)">LinkedIn</a>

Thanks in advance.

share|improve this question
Really? Does it get more basic? – DanMan Jan 3 at 2:14

2 Answers

Use window.open():

<a onclick="window.open(document.URL, '_blank', 'location=yes,height=570,width=520,scrollbars=yes,status=yes');">Share Page</a>

This will create a link titled Share Page which opens the current url in a new window with a height of 570 and width of 520.

share|improve this answer

Just use window.open() function? The fourth parameter lets you specify window size.

Example

var strWindowFeatures = "location=yes,height=570,width=520,scrollbars=yes,status=yes";
var URL = "https://www.linkedin.com/cws/share?mini=true&amp;url=" + location.href;
var win = window.open(URL, "_blank", strWindowFeatures);
share|improve this answer
shiplu.mokadd.im That seems to be what I need but I am not sure where it goes. – Mark Mitchell Jan 3 at 2:11
1  
@MarkMitchell If you don't care about coding standards - into the onclick attribute. A slightly better option is to create a function that you call from the onclick. Using getElementById and addEventListener is cleaner still. Using jQuery to get a shorter syntax (and some other features + tons of plugins) is very popular as well. – Jan Dvorak Jan 3 at 2:15
@MarkMitchell see my updated code. – shiplu.mokadd.im Jan 3 at 2:19

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.