Question

I have a button in the html:

<a id="comment">Comment</a>

When it is clicked I want the browser to focus on Facebook comments' textarea. I have:

$("#comment").click(function() {
        $("#fb-comments textarea").focus();
    });

but it doesn't work

Était-ce utile?

La solution

It's served via an Iframe from Facebook, so you cannot access the content due to the Same Origin Policy. (you cannot do this at all)

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top