🚨 Time is Running Out: Reserve Your Spot in the Lucky Draw & Claim Rewards! START NOW

Code has been added to clipboard!

The Correct Way to Use jQuery .off() Method

Reading time 1 min
Published Jan 9, 2018
Updated Oct 10, 2019

jQuery off: Main Tips

  • The .off() method makes jQuery remove event listeners from selected elements.
  • If no arguments are specified, jQuery .off() removes all event handlers attached to specified elements.
DataCamp
Pros
  • Easy to use with a learn-by-doing approach
  • Offers quality content
  • Gamified in-browser coding experience
  • The price matches the quality
  • Suitable for learners ranging from beginner to advanced
Main Features
  • Free certificates of completion
  • Focused on data science skills
  • Flexible learning timetable
Udacity
Pros
  • Simplistic design (no unnecessary information)
  • High-quality courses (even the free ones)
  • Variety of features
Main Features
  • Nanodegree programs
  • Suitable for enterprises
  • Paid Certificates of completion
Udemy
Pros
  • Easy to navigate
  • No technical issues
  • Seems to care about its users
Main Features
  • Huge variety of courses
  • 30-day refund policy
  • Free certificates of completion

Usage of .off()

jQuery .off() method removes event handlers added using the .on() method.

Example
$("button").click(() => {
   $("div").off("click");
});

jQuery .off(): Syntax

The syntax for .off() jQuery method is as follows:

$("selector").off(event,selector,handler);

jQuery .off() method takes three arguments:

  • event - an event type to specify what handlers should be removed. Accepts multiple values separated by spaces.
  • selector - a selector, which must match the one used by the .on() method to add the jQuery event handlers you now wish to remove.
  • handler - the name of the function that was run by the specified jQuery event handler.