InterviewSolution
| 1. |
Process of jQuery works |
|
Answer» AS all of us know $() function is an ALIAS for the jQuery() function we can also use jQUery instead of $ and this RETURNS a special Java-Script object. And this Object contains an array of DOM elements that matches the selector. And this Selector is key thing in jQuery development. It is away to select node from DOM. This Java-Script object possesses a large NUMBER of useful predefined methods that can action group of elements.This type of construct is termed a wrapper because it wraps the matching element(s) with extended functionality. |
|