InterviewSolution
| 1. |
What is jQuery Connect and where to use it |
|
Answer» This is a jQuery plugin that is used to connect / bind a function to another function. It is more of assigning a handler for another function. Connect is used to execute a function whenever a function from another OBJECT or plugin is executed. We can connect to an event of a DOM element too using this function. In the sense same connect function can be used for both DOM ELEMENTS and for the functions. |
|