Similar to #970 this is the rollup of all the deprecations planned for jQuery 3.2 and 3.3 to be sure we don't miss any. We have tickets in the Core tracker for these and a few have their own docs tickets already.
jQuery 3.2
jQuery 3.3
For the event shorthand methods (.click(), .mousemove(), etc.) I think we should use the current API entries and explain that .click() is now best done as .on("click", fn) or .trigger("click"). However let's just rewrite the examples and discussion in those pages to use .on() or .trigger() and describe the behavior of the event since I think people still want/need those event-specific details.
Similar to #970 this is the rollup of all the deprecations planned for jQuery 3.2 and 3.3 to be sure we don't miss any. We have tickets in the Core tracker for these and a few have their own docs tickets already.
jQuery 3.2
jQuery 3.3
event.which (see also Deprecate(EDIT by @mgol: this API got undeprecated)whichproperty of the event object jquery#2337)For the event shorthand methods (
.click(),.mousemove(), etc.) I think we should use the current API entries and explain that.click()is now best done as.on("click", fn)or.trigger("click"). However let's just rewrite the examples and discussion in those pages to use.on()or.trigger()and describe the behavior of the event since I think people still want/need those event-specific details.