I have the following 'td'element, and want to read out the string part (cell 1) ONLY without the 'span' part, how can i do that in jQuery?
<td class="myTable">cell 1<span class='end'> </span></td>
Thanks.
|
|
Here's a generic solution that will do it without ugly RegExp nastiness :-)
Edit 1:
Edit 2:
This is essentially what the first solution does in pure jQuery methods, but since jQuery provides no support for text-node handling one is left with two fairly bad options: inefficient jQuery code, or this sort of bulky W3C-DOM fugliness. (just as good I made a plugin out of it.) ... Then again, you could always just use a regular expression as suggested by someone already. :-) |
|||||||||||
|
Example here: http://fiddle.jshell.net/TSYQJ/ |
|||
|
Just tested and this does work. Example page:
|
|||||||
|