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

Sharing USB across networks

You may need access to a printer, scanner, webcam, or dongle connected to another computer.…

9 hours ago

Fractional CTO Services: Catalyzing Growth in the Logistics Sector

In today's fast-paced digital world, the logistics and supply chain sector is encountering unprecedented challenges…

19 hours ago

How to Increase E-commerce Site Speed for Fast Conversions?

Website navigation and speed play a significant role in the success of online business. Attractive…

1 day ago

Jackpotjoy: The UK Beloved Online Casino

Welcome to your ultimate guide to Jackpot joy, the crown jewel of UK online casinos!…

3 days ago

Comparative Analysis of Hybrid Mobile App Development Frameworks

The demand for mobile apps has risen rapidly. The reason? The modern customers proactively rely…

4 days ago

The Rise of Electric Cars in Modern Mobility

In recent years, a significant shift has occurred in the automotive industry as electric vehicles…

4 days ago