I have html document with next structure
<html>
<head>...</head>
<body>
Some text
<iframe name="frame2" id="frame2">
#document
<html>
<head>...</head>
<body>
<table>
<tr>
<td>Inner Text</td>
</tr>
</table>
</body>
</html>
</iframe>
</body>
</html>
How can I select <td> tag from iframe2 using jQuery selectors and get it’s inner text? I have no idea how can I select any tag from inner #document construction? Can some one chip in me?
firt you need the document of the iframe
than use jquery as normal