so my code is something along the lines of:
<table><tr><td class="tdclass1">
$('#nameoftable tr').each(function(){
tdclass1 = $(this).find(".classname").html();
if (tdclass1:contains('classname'))
//do something here
});
What I want to do is simply extract the inner HTML of this specific span.
Any help is appreciated 🙂
This should do it: