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>Microsoft CDN:
<script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" ></script>
</head>
<head>
<script src= "https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js" ></script>
</head>
very nice
ReplyDelete