i have a complete page coming in my success message and it is comingas complete html, inside it it has
<table><tr><td><font class="abc"><a></a> - these are multiple </font></td></tr></table>
now i am trying to get the paging contents based upon the find of jquery to get the inner contents of the font tag
trying like this:
$("#mydiv").find("table>tr>td>font").html();
but that does not seems to be working
Thanks everyone for answers, To Update here #1
to make sure i get the element i need the text [pages] is written inisde te font tag, so want to have a check if the fonr has pages then extraxt whole content inside the font
Thanks