IMG-LOGO

How to Use JQuery Framework?

andy - 14 Dec, 2015 3817 Views 0 Comment

There are two options available for you to use JQuery framework. First option is to download the JQuery file directly from the following website.

Download the JQuery framework library from https://jquery.com.

Second alternative is to use CDN. CDN stands for Content Delivery Network. This option is better because it will download from the closest server to your visitor's location, therefore it will have a better performance impact for your user experience.

You can either include this google CDN link on your website. It is recommended you put this link into the footer of your page. You can put it on the header of your page if you want. The difference is if you place it on your footer, the user does not need to wait for their browser to download the library. On the other hand, you have to make sure your code requires JQuery to be loaded after the browser has completely loaded the content.


Or you can use the CDN directly from JQuery.

https://code.jquery.com/jquery-2.1.4.min.js

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Blogs

Related Tutorials

DOM Element Selection in JQuery

Learn how easily to manipulate DOM element selection using JQuery One of the cool feature from JQuery is the DOM selector In javascript when you want to reference an object you can refer the object either based on ID or ...

Event Handling in JQuery

So what actually an event? An event can be considered as a result of an action triggered by a process which can be a process clicking of a user or when a page is loading.

Writing your first JQuery function.

Getting started by writing your first JQuery code Learn how to create it from scratch and apply it on your site The best way to start your first JQuery function is after the browser has completedly loaded the page content ...

What is JQuery?

Learn what is the JQuery framework is and why many web developers and designers love to this framework.