jQuery is a javascript library
jQuery is a fast, small, and feature-rich JavaScript library. This makes things like crawling and manipulating HTML documents, handling events, animations, and Ajax much easier with an easy-to-use API that works across multiple browsers. By combining versatility and extensibility, jQuery has changed the way millions of people write JavaScript. http://jquery.com/
After enabling the script on the page, it will create jQuery and $ objects in the global context (window). This is not native.
it
_jQuery = window.jQuery, _$ = window.$,
They are internal mappings in case of overwriting. You can use the .noConflict function to restore the previous window.$ Value to prevent conflicts with prototype and other libraries
Brunolm
source share