We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
** WIP ** This page can be used to keep track of changes for the jQuery 2.0 upgrade.
$.fn.andSelf (Replaced with $.fn.addBack)
$.fn.andSelf
$.fn.addBack
deferred.isRejected & deferred.isResolved (Replaced with deferred.state)
deferred.isRejected
deferred.isResolved
deferred.state
deferred.pipe (Replaced with deferred.then)
deferred.pipe
deferred.then
$.fn.die
$.fn.error (Replaced with $.fn.on('error',...)
$.fn.error
$.fn.on('error',...
$.boxModel (Removed)
$.boxModel
$.browser (Removed)
$.browser
$.sub (Removed)
$.sub
$.fn.live (Replaced with $.fn.on)
$.fn.live
$.fn.on
$.fn.load (Replaced with $.fn.on('load',...)
$.fn.load
$.fn.on('load',...
$.fn.selector (Removed)
$.fn.selector
$.fn.size (Replaced with $.fn.length)
$.fn.size
$.fn.length
$.fn.toggle
$.fn.unload (Replaced with $.fn.on('unload',... or $.fn.on('beforeunload',...)
$.fn.unload
$.fn.on('unload',...
$.fn.on('beforeunload',...
$.fn.data('events') (Removed)
$.fn.data('events')
$.curCSS (Removed)
$.curCSS
$.attrFn (Removed)
$.attrFn
Use $.prop('disabled') instead of $.attr('disabled')
$.prop('disabled')
$.attr('disabled')
Use $.val() instead of $.attr('value')
$.val()
$.attr('value')
Use style.top/right/bottom/left to get actual set values instead of $.css('top/right/bottom/left') (which seems to convert to pixels)
style.top/right/bottom/left
$.css('top/right/bottom/left')