jQuery

jQuery bind() and unbind() – attaching event handlers

Share

jQuery bind() function is used to attach one or more event handler to elements, while the unbind() is used to removes an existing event handler from elements.

As of jQuery version 1.7, jQuery on() method is the preferred method rather than jquery bind and unbind for attaching event handlers for selected elements.

bind() :

A basic usage of .bind() is:

$( "#elementID" ).bind( "click", function() {
console.log( "User single clicked" );
});
$("#elementID").bind("dblclick", function () {
console.log( "User double clicked" );
});

Alternatively, you can combine the code like following:

$("#elementID").bind({
click : function(){
console.log( "User single clicked" );
},
dblclick : function(){
console.log( "User double clicked" );
}
});

Read Also: Using Delegate and Undelegate in jQuery

You can pass a custom parameter data to the bind() function as below:

var message = "Message passed to jQuery!";
$( "#elementID" ).bind( "click", {
msg: message
}, function( event ) {
console.log( event.data.msg );
});

See more from jQuery documentation.

unbind() :

The unbind() method removes previously attached event handlers from selected elements.

The below example detached the “click” and “dblclick” event from elements with an Id of “elementID”.

$('#BoxId').unbind("click");
$('#BoxId').unbind("dblclick");

As of jQuery version 1.7, jQuery off() methods are preferred method for removing event handlers for selected elements.

See more from jQuery documentation.

Recent Posts

Optimize Your Hormonal Balance: Enclomiphene Citrate for Enhanced Wellness

Hormonal balance plays a pivotal role in overall well-being, influencing various aspects of health, from…

22 mins ago

Paul Kanes Explores the World of Canine Companionship through Dog Walking

Dog walking is an excellent way to maintain your furry friend's camaraderie and provides many…

3 hours ago

Top 5 Must-Have Features Every Mobile App Needs to Succeed

Introduction Businesses understand the diverse requirements of mobile applications, which provide a competitive advantage. There…

8 hours ago

IoT Data Analytics: Ways to Gain Value from IoT Data

The Internet of Things (IoT) has recently changed the world. It links gadgets together and…

8 hours ago

The Rise of NFTs: Exploring the Impact of Non-Fungible Tokens on the Digital Economy

NFTs, or Non-Fungible Tokens, are revolutionizing the digital economy. These unique digital assets, authenticated through…

1 day ago

What to Ask Before You Hand Your Laptop For Repairing

It is safe to say that if you are in need of a good laptop…

1 day ago