InterviewSolution
Saved Bookmarks
| 1. |
What is JQuery.noConflict? Explain |
|
Answer» As like MANY other JAVASCRIPT LIBRARIES, jQuery uses $ as a variable name or function All the functionalities available in jQuery is without using $. The JQuery.noConflict method is used to give control of the $ variable back to the library which implemented it. This helps developers to MAKE sure that the $object of libraries doesn’t conflict with jQuery operations. |
|