Found 8592 Articles for Front End Technology

How to link jQuery in HTML page?

Alex Onsman
Updated on 07-Oct-2023 03:06:45

31K+ Views

What is jQuery? jQuery is a fast and concise JavaScript library primarily designed with a nice motto − Write less, do more. The main purpose of this library is to make it easier to use JavaScript on our website. jQuery simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery wraps many lines of JavaScript code into methods that we can call with a single line of code. How to link jQuery? There are two ways to link jQuery in an HTML page - By downloading the ... Read More

How to link jQuery from Google CDN?

David Meador
Updated on 20-Apr-2022 08:38:13

15K+ Views

jQuery is a JavaScript library primarily designed with the purpose to make it easier to use JavaScript on our website. jQuery wraps many lines of JavaScript code into methods that we can call with a single line of code. Google provides CDN support for jQuery via the googleapis.com domain. The latest version of Google CDN provides four different types of jQuery versions- normal (uncompressed), minified, slim, and slim & minified. Google CDN provides the jQuery via ajax.googleapis.com domain.Different jQuery VersionsjQuery is provided with different versions having different sizes or functionality. The four versions are discussed below.jquery.js is the normal jQuery ... Read More

Advertisements