InterviewSolution
Saved Bookmarks
| 1. |
What is the between $(this) and 'this' in jQuery? |
|
Answer» $(this) METHOD wrapper AROUND the DOM tree method, whereas ‘this’ is a complete DOM tree method. $(this) method can be USED to call jQuery functions, but ‘this’ calls only the DOM tree functions. |
|