Marco Dinatsoli
Marco Dinatsoli

Reputation: 10580

javascript couldn't apply find on an element

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

Answers (1)

Oleksandr T.
Oleksandr T.

Reputation: 77482

You should convert element to jQuery Object

$thisTR = $(this) // not just this

Example

Upvotes: 3

Related Questions