最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

how to translate facebook's like button into another language only with javascript? - Stack Overflow

programmeradmin1浏览0评论

I have a page where the english version facebook's like button is loaded by default. I can only manipulate the page with javascript and don't have access to certain things, i.e. facebook script. So, how can I have that like button translated into another language, say spanish? Thanks.

I have a page where the english version facebook's like button is loaded by default. I can only manipulate the page with javascript and don't have access to certain things, i.e. facebook script. So, how can I have that like button translated into another language, say spanish? Thanks.

Share Improve this question edited Sep 9, 2011 at 5:01 asked Sep 9, 2011 at 0:07 user126284user126284 4
  • What do you mean by "Like" button? $('.like_link .default_message').html('Something Else')? – vol7ron Commented Sep 9, 2011 at 0:22
  • yes, but the button resides inside an iframe and I cannot change it this way. – user126284 Commented Sep 9, 2011 at 0:46
  • I am missing where the iFrame is. My facebook doesn't have an iFrame. Are you using GreaseMonkey? – vol7ron Commented Sep 9, 2011 at 0:47
  • no I am not. the facebook xfbml script that you include to your site creates that iframe automatically. – user126284 Commented Sep 9, 2011 at 0:58
Add a ment  | 

3 Answers 3

Reset to default 7

The source of the facebook connect javascript is: http://connect.facebook/en_US/all.js

just change en_US to the locale you want. en_ES is Spain's locale, and a list of all facebook locales is at http://facebook./translations/FacebookLocales.xml

It's going to be extremely difficult - there isn't a 'nice' way to do it. This is because the like button lives inside an iframe, and you can't access the contents of it from within your page, with javascript or anything else.

You can manipulate the iframe's src attribute - check the facebook documentation to see if you can pass in a language parameter - something like: &lang=es on the end of the URL.

Updated - the URL parameter is locale, as in: &locale=es_ES

Others are talking about an iFrame, which I don't see anywhere on my Facebook page. If you can use GreaseMonkey, or are able to access the links via JS, you can use the following:

  1. jQuery:

    $('.liketext').html('Something Else')
    
  2. JavaScript:

    function getElementsByClass(_class,_obj,_tag) {
       var found = new Array();
       if ( _obj == null )  _obj = document;
       if ( _tag == null )  _tag = '*';
    
       var els     = _obj.getElementsByTagName(_tag);
       var pattern = new RegExp("(^|\\s)"+_class+"(\\s|$)");
    
       for (var n=els.length, j = 0; n--; ) {
          if ( pattern.test(els[n].className) ) {
             found[j] = els[n];
             j++;
          }
       }
       return found;
    }
    
    var likes = getElementsByClass('liketext',document);
    for (var n=likes.length; n--; )
       likes[n].innerHTML = "NEW LIKE TEXT";
    

To target your iFrame:

  • document.getElementById('<your iFrame ID').contentWindow.document;
    
  • window.frames[0]
    

Example:

  • var iF = document.getElementById('<your iFrame ID>').contentWindow.document;
    // var iF = window.frames[0].document;  // alternative to above
    
    var likes = getElementsByClass('liketext',iF);
    for (var n=likes.length; n--; )
       likes[n].innerHTML = "NEW LIKE TEXT";
    
发布评论

评论列表(0)

  1. 暂无评论