Top "Jquery-events" questions

These methods are used to register behaviors to take effect when the user interacts with the browser, and to further manipulate those registered behaviors.

Binding event to chosen select

I have this code for a select box which is being displayed by the Chosen jQuery plugin. What I am …

jquery onchange jquery-chosen jquery-events
Handle selected event in twitter bootstrap Typeahead?

I want to run Javascript function just after user select a value using twitter bootstrap Typeahead. I search about some …

javascript jquery twitter-bootstrap events jquery-events
Get information about the source of an event with jQuery

A function is bound to an event for many objects. One of those objects fires the event and jQuery kicks …

jquery jquery-events
What's the difference between keyup, keydown, keypress and input events?

I have been trying to understand jQuery keypress, keydown, keyup and input events. But I found them quite confusing. Could …

jquery input jquery-events
Turn the Tooltip Bootstrap functionality off

According the documentation is is possible to turn off the functionality just doing $('body').off('.alert.data-api'). In the …

javascript jquery twitter-bootstrap tooltip jquery-events
Get the clicked object that triggered jquery blur() event

Suppose I do this: $(target).blur(function(e){ //do stuff }); Is there a way to fetch the object that was …

javascript jquery events jquery-events onblur
Direct vs. Delegated - jQuery .on()

I am trying to understand this particular difference between the direct and delegated event handlers using the jQuery .on() method. …

javascript jquery event-bubbling jquery-events event-binding
Cancel click event in the mouseup event handler

Writing some drag&drop code, I'd like to cancel the click events in my mouseup handler. I figured preventing …

javascript jquery click jquery-events mouseup
jQuery event bubbling

I want to understand how exactly to interpret bubbling. Does it mean going up the HTML code hierarchy or something …

javascript jquery live jquery-events event-bubbling
jQuery Multiple Event Handlers - How to Cancel?

I have two functions bound to a click event at two different times (using jQuery). The order in which they …

jquery event-handling jquery-events