This needs to be cross-browser compatible at least with IE 7/8 and the other major, current browsers.
I have the following (simplified) HTML:
<div id="facebook">
<fb:like ...... />
<fb:comments>
<iframe .... />
</fb:comments>
</div>
The IFRAME is added by Facebook but I need to make a display modification to it. How can I use CSS selectors to select "the first IFRAME within the second FB tag under the div with an ID of facebook"? I need to add height and overflow CSS attributes to the IFRAME.
If this is not possible with CSS in a cross-browser compatible fashion, what would the approptiate jQuery selector be? Might help to have both anyways if someone wants to answer both scenarios but my preference is for CSS.
Thanks.