Downloading jQuery
There are two versions of jQuery available for download:
Production Edition - This is for your live website because it is small and compressed
Development Edition - This is for testing and development (uncompressed and readable code)
Both versions can be downloaded from jQuery.com.
Example -
<head>
<script src="jquery-3.3.1.min.js"></script>
</head>
<script src="jquery-3.3.1.min.js"></script>
</head>
live url -
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
0 comments:
Post a Comment