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 don't know enough about javascript to figure out why the line in this script that begins "window.open..." throw an invalid argument error in IE7-8-9b. Works fine in Firefox and Webkit.

(The script is envoked with an onclick="share.fb()"in a html link and pops up a new browser window to share at FB and Twitter).

var share = {
    fb:function(title,url) {
    this.share('http://www.facebook.com/sharer.php?u=##URL##&t=##TITLE##',title,url);
    },
    tw:function(title,url) {
    this.share('http://twitter.com/home?status=##URL##+##TITLE##',title,url);
    },
    share:function(tpl,title,url) {
    if(!url) url = encodeURIComponent(window.location);
    if(!title) title = encodeURIComponent(document.title);

    tpl = tpl.replace("##URL##",url);
    tpl = tpl.replace("##TITLE##",title);

    window.open(tpl,"sharewindow"+tpl.substr(6,15),"width=640,height=480");
    }
    };
share|improve this question
Did you try switching the this.share to share.share in those fb and tw functions? – sdleihssirhc Feb 1 '11 at 3:11

1 Answer

up vote 17 down vote accepted
+50

IE disallows spaces and other special characters in window name (the second argument). You need to remove them before passing as argument.

Replace

"sharewindow"+tpl.substr(6,15)

by

"sharewindow"+tpl.substr(6,15).replace(/\W*/g, '')

so that you end up with

window.open(tpl,"sharewindow"+tpl.substr(6,15).replace(/\W*/g, ''),"width=640,height=480");

(that's basically a regex replacement which says "replace every sequence of non-aplhabetic character by nothing")

Live demo here (configure if necessary your popup blocker)

share|improve this answer
How would I remove the spaces? I didn't write the JS, just found it. – songdogtech Jan 30 '11 at 2:31
See answer update. – BalusC Jan 30 '11 at 2:34
Thanks, but still an invalid argument error. There is a space in between the two single quotes? – songdogtech Jan 31 '11 at 14:59
What is the actual value? Do an alert("sharewindow"+tpl.substr(6,15)) to see it. – BalusC Jan 31 '11 at 15:01
The alert is sharewindow/twitter.com/ho and sharewindow/www.facebook.c Is that an incomplete message? Or did I add the alert in the wrong way? – songdogtech Jan 31 '11 at 21:15
show 4 more comments

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.