Find cell in table, add text after font class using jQuery -


i have code...

<td valign="top">     <a title="test title" class="class1 class2" href="http://www.test.com/product/test123.htm">         test link text     </a>     <img width="5" height="5" src="/images/clear1x1.gif">     <br>     <font class="text">test text</font> </td> 

how find particular cell, unique test123.htm, , add text after using jquery?

try this:

$("td a[href$='test123.htm']").parent().append("your text"); 

Comments

Popular posts from this blog

sql - VB.NET Operand type clash: date is incompatible with int error -

SVG stroke-linecap doesn't work for circles in Firefox? -

python - TypeError: Scalar value for argument 'color' is not numeric in openCV -