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.

You will most likely recognise the below javascripts from facebook/twitter/googleplus, all I have done here is group them nicely together.

How can I use jQuery to create the script tags and improve the code to work together?

function generateJs(){

    // Google Plus
    window.___gcfg = {lang: 'en-GB'};
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);

    // Facebook API 
     $("body").append('<div id="fb-root"></div>');          
    (function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1&appId="+opt.faceBookID;
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));

    // Twitter
    !function(d, s, id){
        var js,fjs=d.getElementsByTagName(s)[0];
        if(!d.getElementById(id)){
            js=d.createElement(s);
            js.id=id;
            js.src="//platform.twitter.com/widgets.js";
            fjs.parentNode.insertBefore(js,fjs);
        }
    }(document, "script", "twitter-wjs");
}
share|improve this question
1  
Your JS Fiddle example is working perfectly for me... All 3 "elements" load and are displayed very quickly. What exactly are you trying to achieve beyond this? "Don't fix something that isn't broke" :P – Lix Feb 22 '12 at 15:43
Same here. I don't see what would you want to fix here. – Henrik Peinar Feb 22 '12 at 17:37
This question has not received enough attention. We got attention. The problem is solved already. What's next? – Somnath Muluk Feb 23 '12 at 4:55
Yes I know it is not broken, I am asking how to improve the code. To me there looks to be a few duplicates that could be improved. e.g Do we need to getElementsByTagName 3 times? – John Magnolia Feb 23 '12 at 8:05

1 Answer

up vote 0 down vote accepted
+100

If you only want less code, this solution should work:

function generateJs(){
    // Google Plus
    window.___gcfg = {lang: 'en-GB'};
    $.getScript('https://apis.google.com/js/plusone.js');

    // Facebook
     $('body').append('<div id="fb-root"></div>');
    $.getScript('http://connect.facebook.net/en_GB/all.js#xfbml=1&appId='+opt.faceBookID);

    // Twitter
    $.getScript('http://platform.twitter.com/widgets.js');
}

However, there is no way I see to speed up loading the scripts.

share|improve this answer
Perfect, this was all that I wanted. – John Magnolia Feb 23 '12 at 18:04

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.