jQuery
Running a Business
3
Posts
3
Posters
15
Views
1
Watching
-
That's the part I can't figure out difference between $(this) and this keyword in jQuery? I'll have your answer, guys!
-
That's the part I can't figure out difference between $(this) and this keyword in jQuery? I'll have your answer, guys!
-
That's the part I can't figure out difference between $(this) and this keyword in jQuery? I'll have your answer, guys!
this
is a javascript keyword, representing the current javascript class.
$(this)
wraps this into a jQuery object, able to apply and act upon it using jQuery methods.