skip to Main Content

I’m updating the jQuery library on my website from version 3.5.1 to version 3.7.1. I need to address all the functions that have been removed to avoid problems. Does anyone know which functions were removed during these updates?

I tried to search out on the release notes but i didn’t find anything.

2

Answers


  1. You can use for this compare function on GitHub https://github.com/jquery/jquery/compare/3.5.1…3.7.1

    Or you can read about every release on https://github.com/jquery/jquery/releases

    Login or Signup to reply.
  2. You should only have to worry about the removal of deprecated APIs when migrating to jQuery 4.x

    See: "jQuery 4.0.0 BETA!" ~ jQuery Blog


    jQuery 4.x

    These were removed in 4.x:

    • Functions:
      • jQuery.cssNumber
      • jQuery.cssProps
      • jQuery.isArray
      • jQuery.parseJSON
      • jQuery.nodeName
      • jQuery.isFunction
      • jQuery.isWindow
      • jQuery.camelCase
      • jQuery.type
      • jQuery.now
      • jQuery.isNumeric
      • jQuery.trim
      • jQuery.fx.interval
    • Prototype:
      • push
      • sort
      • splice
    • Events:
      • focusin
      • focosout
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search