Hello!
Everything is working as expected with the code below (href wraps around string, etc...), with the exception that I can't seem to get the nodevalue from the td; is there a different method I should use to grab the text in the td?
Everything is working as expected with the code below (href wraps around string, etc...), with the exception that I can't seem to get the nodevalue from the td; is there a different method I should use to grab the text in the td?
dataBound: function () {
$('td:nth-child(2)').each(function(){$(this).wrapInner( "<a href=" + this.nodeValue + "></a>").prepend('Part: ')}) $('td').each(function(){if($(this).text()=='N'){$(this).wrapInner( "<span class='orange'></span>") }})<br> }