Forum Discussion
_anomDiebolt_
9 years agoQrew Elite
I can't connect your question to the YQL but if this is the content within the <iframe id="myiframe"> you are attempting to target:
<div id="myContent"></div>
You can select into the <iframe> with this jQuery selector:
$("#myiframe").contents().find("#myContent")
<div id="myContent"></div>
You can select into the <iframe> with this jQuery selector:
$("#myiframe").contents().find("#myContent")