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

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

python - How do I create a list index that loops through integers in another list -

c# - “System.Security.Cryptography.CryptographicException: Keyset does not exist” when reading private key from remote machine -