What's the difference between $(this) and this in jQuery, and why do they sometimes give the same result and other times behave differently?
|
|
|||||
|
|
For example, this code would fail:
So we wrap
|
|||
|
|
|
If |
||||
|
|
|
If in your current context if the |
|||
|
|
|
For example, if you set a click handler for all anchors:
then the |
|||
|
|
|
for you to understand a little bit better, get yourself a debugger of somekind such as google chrome and do this..
this will show you what the difference is :) |
|||
|
|
|
In JavaScript this always refers to the “owner” of the function that is executing. Using $(this) will only wrap the owner so that all the jQuery operations will be extended and available to it. Consider:
They usually give the same results since the owner is the same, only that when wrapped by jQuery it can operate with the jQuery functions. |
|||
|
|