Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9151053
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T11:42:27+00:00 2026-06-17T11:42:27+00:00

We are currently upgrading jQuery in our application from jQuery 1.6.4 to 1.9.0. I

  • 0

We are currently upgrading jQuery in our application from jQuery 1.6.4 to 1.9.0.

I believe I have gotten the majority of the changes fixed in our application, however, I would like to be able to go from a semi-solid list of functional jQuery changes to be sure.

As of right now, the only two major changes I see are the removal of the .live and the $.browser features.

There were also some issues that resulted in us upgrading jquery UI to the latest as well.

We have a large application that we finally got the approval to drop support for IE 6 and therefore are trying to bring it closer to the modern age.

I’m not looking for a complete change log for each version, as the change logs include a lot of stuff I don’t really care about. Hopefully this will help others in their upgrade process as well.

What I am looking for: Deprecated functions, Removed functions, Important functional changes such as the old attr and prop

What are the deprecated, removed functions, and important functional changes since jQuery 1.6.4 to 1.9.2…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T11:42:28+00:00Added an answer on June 17, 2026 at 11:42 am

    Since this question may be closed, it makes sense as nhahtdh suggested to submit an answer to be able to edit and add information later. Feel free to make changes to add additional change notes and even increase this to the latest versions of jQuery (1.10)

    >= jQuery 1.6.4

    No significant changes noted

    >= jQuery 1.7.1

    No significant changes noted

    >= jQuery 1.7.2

    From Docs: If you’re using jQuery Mobile, please use jQuery 1.7.2 only with jQuery Mobile 1.1. For previous versions of jQuery Mobile, stay with jQuery core 1.7.1 or earlier.

    >= jQuery 1.8.0

    Core changes to watch:

    • animations – core changes
    • CSS Prefixing

      • From jquery:

    When you use a CSS property, in either .css() or .animate(), we’ll use the correct prefixed property (when appropriate) for that browser. For example, take .css(“user-select”, “none”); in Chrome/Safari we’ll set the value as “-webkit-user-select”, Firefox will use “-moz-user-select”, and IE10 will use “-ms-user-select”.

  2. data:

    The .data() method had an undocumented and incredibly non-performant way to monitor setting and getting of values that was removed in 1.9. This has affected the interpretation of data names that contain periods, in a good way. As of 1.9, a call to .data(“abc.def”) retrieves the data for the name “abc.def” only, and never just “abc”. Note that the lower-level jQuery.data() method never supported events and so it has not changed. The jQuery Migrate plugin does not restore the old behavior for this case.

  3. .curCSS: This one is an important one for me. Upgrading the the new jQuery UI fixed this issue, but it is important to note, that without upgrading, this will break various things.

    $.curCSS: This method was simply an alias for jQuery.css() from jQuery 1.3 onward. Although it has never been part of the documented API, some external code has been known to use it, perhaps thinking it was “more efficient.” Now it’s “more gone.”

  4. >= jQuery 1.8.1

    jQuery notes: Use jQuery UI 1.8.23 and jQuery Mobile 1.1.1 or later for best compatibility with jQuery core 1.8.1.

    Don’t use Quirks mode! http://blog.jquery.com/2012/08/30/jquery-1-8-1-released/

    >= jQuery 1.8.2

    • offset: This could effect a page that was expecting a value from offset to be off already in a specific browser. http://bugs.jquery.com/ticket/12536

    MAKE .OFFSET() CALC LESS WRONG ON BROWSERS W/O GETBOUNDINGCLIENTRECT

    >= jQuery 1.8.3

    No significant changes noted

    >= jQuery 1.9.0 from http://jquery.com/upgrade-guide/1.9/

    • .toggle(function, function, ... ) removed

      This is the “click an element to run the specified functions” signature of .toggle(). It should not be confused with the “change the visibility of an element” of .toggle() which is not deprecated.

    • jQuery.browser() removed

    • .live() removed

    • .die() removed

    • jQuery.sub() removed

    • .add() changes http://jquery.com/upgrade-guide/1.9/#add-

    • .addBack( selector ) replaces .andSelf() http://jquery.com/upgrade-guide/1.9/#addback-selector-replaces-andself-

    • .after(), .before(), and .replaceWith() with disconnected nodes

    • .appendTo, .insertBefore, .insertAfter, and .replaceAll

    • AJAX events should be attached to document

    • Checkbox/radio state in a .trigger()ed "click" event

    • Order of triggered "focus" events

    • jQuery(htmlString) versus jQuery(selectorString)

    • Events not fired by the .data() method; names with periods

    • Ordering of disconnected nodes within a jQuery set

    • Loading and running scripts inside HTML content

    • .attr() versus .prop()

    • $("input").attr("type", newValue) in oldIE

    • "hover" pseudo-event

    • .selector property on jQuery objects

    • jQuery.attr()

    • jQuery.ajax returning a JSON result of an empty string

    • jQuery.proxy() context

    • .data("events")

    • Removed properties of the Event object

    • Undocumented arguments of API methods

    I will review and add to this later as I find more issues.

  • 0
  • Reply
  • Share
    Share
    • Share on Facebook
    • Share on Twitter
    • Share on LinkedIn
    • Share on WhatsApp
    • Report

Sidebar

Related Questions

I am currently upgrading our application from Webwork to Struts2. Today I run into
We are currently evaluating upgrading from XP to Windows 7, but have one last
Just a quick question involving upgrading Magento. I currently have version 1.4.1 and would
I'm currently upgrading my application to use jQuery 1.6.1 (previously using 1.4.4) and found
I have problems after upgrading: jqGrid from 3.5.3 to 3.8.2 jquery from 1.3.2 to
Given: A rails 2.3.x application currently being upgraded to rails 3. Upgrading ruby from
I'm currently upgrading one of my websites from the old system to HTML5 and
Here is my scenario: I am currently upgrading a web site I maintain from
I am currently upgrading our software to support ipv6 and in the meantime I'm
I'm currently upgrading one of our projects to CakePHP 2.0. Unfortunately the first line

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.