• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

How to get a new version for jQuery?

Enthusiast ,
Jun 20, 2019 Jun 20, 2019

Copy link to clipboard

Copied

Hi,

I have the tag below for jQuery.

<script src="https://code.jquery.com/jquery-3.4.0.min.js" integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg=" crossorigin="anonymous">

</script>

I just wonder, if I want to get a newer version, if any, where would I go?

Hosun Kang

The title was edited by Moderator.

Views

454

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jun 20, 2019 Jun 20, 2019

Go to jQuery CDN

Votes

Translate

Translate
Community Expert ,
Jun 20, 2019 Jun 20, 2019

Copy link to clipboard

Copied

Go to jQuery CDN

Wappler, the only real Dreamweaver alternative.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jun 20, 2019 Jun 20, 2019

Copy link to clipboard

Copied

Hi,

Thank you very much for your reply.

jQuery Core 3.4.1 has 4 options: uncompressed, minified, slim, slim minified.

Where does the difference come from?

Hosun Kang

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jun 20, 2019 Jun 20, 2019

Copy link to clipboard

Copied

LATEST
  • Uncompressed is the readable format for jQuery with spaces and line breaks, making it a lot easier for you to read and get a better understanding of the framework.

  • Minified has spaces and line breaks removed making the file smaller in size and faster to load. Just to point out as well, you are better using the minified version (.min) for your live environment as Google are now checking on page loading times. Having all your JS file minified means they will load faster and will score you more brownie points.

  • In an endeavour to make the jQuery library smaller, in jquery.slim.js, the following features are removed:
    1. jQuery.fn.extend
    2. jquery.fn.load
    3. jquery.each // Attach a bunch of functions for handling common AJAX events
    4. jQuery.expr.filters.animated
    5. ajax settings like jQuery.ajaxSettings.xhr, jQuery.ajaxPrefilter, jQuery.ajaxSetup, jQuery.ajaxPrefilter, jQuery.ajaxTransport, jQuery.ajaxSetup
    6. xml parsing like jQuery.parseXML,

           7. animation effects like jQuery.easing, jQuery.Animation, jQuery.speed

        Sometimes a widget will use one or more of the removed fetures in which case you will need to load the full version.

Wappler, the only real Dreamweaver alternative.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines