I am trying to access an object using this inside an .each() and want to perform .find() with it but in console it says .find is undefined function.
data=$(data);
$("tr", data).each(function(){
var est = this.find(".estname a").html;
});
I have also tried this:
data=$(data);
$("tr", data).each(function(){
var est = $(this).find(".estname a").html;
});
In console it shows function() instead of any object 🙁
It should be:
With parentheses after
htmlfunction.