How To Start jQuery? | How to Write Simple jQuery? | How To start learn jQuery? | jQuery



In first article we see what is jQuery?, Which are main feature of jQuery?, Why use jQuery? etc... So now we all know jquery is extended library of javascript and it's very easy to use and very fast. Now

Let's start jQuery !!!


Add jQuery in Your website (Web page)

You think from where i can find or download jquery library. In our first article "What Is jQuery? | jQuery is a JavaScript Library | Download jQuery | jQuery" we give you one download link at bottom of article or you can download from jquery.com or direct use from CDN like google or Microsoft.

How To Add jQuery in Web Page ?

As we said on above you can download or you can direct use jQuery on your web page as show in below.

If you download jQuery:

<head>
<script src= "jquery-3.2.1.min.js" ></script>
</head> 


If you direct use from CDN:

Google CDN :

<head>
<script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" ></script>
</head>
Microsoft CDN:

<head>
<script src= "https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js" ></script>
</head>

Note:- If you use CDN then some time if your internet slow that time take loading time. We recommended you use offline.

Comments

Post a Comment