CDN stands for Content Delivery Network. As the name suggests, it’s a network which delivers content. It is basically a system of distributed servers which delivers web content like images, css file, javascript file, jQuery file etc. to the websites. In regard to jQuery, big companies like Microsoft and Google has their own public CDN
Document.Ready() event gets fired when DOM is completely loaded, but not its other contents like images, css, iframes etc. Window.Load() event gets fired when DOM is completely loaded as well as its other contents like images, css, iframes etc. Document.Ready() event gets fired before Window.Load() event. This means if you want to do any kind
First of all, you have to download jQuery file from jQuery.com which is the official website for jQuery and have complete documentation about its implementation. There are basically 2 versions available v1.x and v2.x. If you want to provide support for older versions of IE 6, 7, 8 then you can download v1.x but if
jQuery is basically a lightweight JavaScript library, which simplifies the coding process with JavaScript and helps in creating more powerful JavaScript applications. Unlike JavaScript, jQuery is compatible with all browsers, thus you don’t need to worry about browser engine compatibility or need to add any kind of additional checks for browser engine before code execution.