+ 7
Please where can i get a compressed zip or rar jquery library and how do i use it
[***URGENT***
3 Respuestas
+ 19
That's an interesting question Gekoda. I think you should elaborate more on your problem.
Well you can download compressed jQuery library files like this one:
https://minime.stephan-brumme.com/files/jquery/jquery-3.1.1.min.7zip.js.gz
or other versions at that website.
The downside is you also gonna need a library to uncompress the library. So your page will need something like zip.js. You can download it here:
https://gildas-lormeau.github.io/zip.js/
Note: I haven't checked it already 😊.
+ 8
Thanks
+ 3
You can download jQuery from: https://jquery.com/download/
More specifically: https://code.jquery.com/jquery-3.5.1.min.js
That assumes you want the minified latest version.
For most websites I work on and any codes on Sololearn using jquery, I link to the CDN instead of downloading and copying it into my source files.
The CDN equivalent to the above download is available with the following script tags:
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha256-4+XzXVhsDmqanXGHaHvgh1gMQKX40OUvDEBTu8JcmNs="
crossorigin="anonymous"></script>
To learn how to use it, I recommend starting with focusing on the following video: https://www.youtube.com/watch?v=hMxGhHNOkCU until the end.
The above introduction can be reinforced with the "tutorial" section from:
https://www.w3schools.com/jquery/
The "jQuery Events" ( https://www.w3schools.com/jquery/jquery_events.asp ) is the last critical topic to learn about. You'll know better if you need to learn how jQuery can manipulate the document model or send HTTP requests and study those accordingly.