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'm trying to style a Facebook Like button iframe with jQuery, the markup is :

<div class="fb_like_post">
    <iframe src="facebook.com/..." scrolling="no" . . .>
</div>

My jQuery code is :

jQuery('.fb_like_post iframe').ready(function() {
    jQuery('.fb_like_post iframe').contents().find('.connect_widget_like_button  .liketext').css('color','red');
});

Doesn't work. In fact I can't apply any style to any element of the iframe. Why ?

share|improve this question
1  
Because it's not your markup, it's facebook's, and they don't want to style it, they already took care of that! – adeneo Mar 4 '12 at 16:34
If they wanted everyone tinkering with their branding, they'd give everyone the option. – Sparky Mar 4 '12 at 16:38
possible duplicate of Facebook, how to change like button image? – ifaour Mar 4 '12 at 17:27
check my answer in the duplicate and not the accepted one! – ifaour Mar 4 '12 at 17:28

1 Answer

This cannot be done via simple JS/CSS due to browser security limitations.

share|improve this answer
Well actually it can, with either pointer events or hiding the iFrame, but it's against facebook TOS, and it's generally not a good idea, but it is technically possible with a little css. – adeneo Mar 4 '12 at 17:42
@adeneo what I meant was more in general about cross-domain frames, but I guess a completely different approach could work. Thanks for the input. – Vahur Roosimaa Mar 4 '12 at 18:00

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.