0 votes
in JQuery by
Explain the difference between $(this) and this in jQuery?

1 Answer

0 votes
by

$() is the jQuery constructor function, whereas this is a reference to the DOM element. To use jQuery methods, we use $(this).

...