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 ?