Reputation: 10580
this is my code
turn false; } return true; } });
I got error:
Uncaught TypeError: $thisTR.find is not a function
this is the code in jsfiddle
Upvotes: 0
Views: 47
Reputation: 77482
You should convert element to jQuery
Object
$thisTR = $(this) // not just this
Upvotes: 3