mousemove()
Syntax
.mousemove(handler)
.mousemove()
handler
- A function to execute each time the event is triggered
Return value
The jQuery object, for chaining purposes.
Description
Blind an event handler to the mousemove event, or trigger that event on an element.
.mousemove(handler) is a shortcut for .bind('mousemove', handler). .mousemove()is a shortcut for .trigger('mousemove').
For example:
<div id="target">Move here</div>
<div id="other">Other</div>
The event handler can be bound to the target:
$('#target').mousemove(function(event) {
$.print(event.pageX + ', ' + event.pageY);
});
We can also trigger the event when the second button is clicked.
$('#other').click(function() {
$('#target').mousemove();
});
Home
JavaScript Book
jQuery
JavaScript Book
jQuery
Event:
- jQuery Event
- jQuery's methods for event
- Event object
- event.keycode
- event.clientX/clientY
- event.pageX/pageY: click event coordinates
- event.preventDefault()
- event.stopPropagation(): Stop only an event from bubbling by using the stopPropagation method.
- event.target.tagName
- event.which:check key code
- return false to Cancel a default action and prevent it from bubbling up
- bind
- .blur()
- .change()
- .click()
- .error()
- .dblclick()
- .delegate()
- die:Removes a bound live event
- .focus()
- .hover()
- keydown() event
- .keypress()
- keyup event and check the key code
- .live()
- .load()
- mousedown() event
- mouseenter() event
- mouseleave
- mousemove()
- mouseover() event
- mouseout
- mouseup() event
- .off() removes events
- .on() replaces the functionality of all the event methods.
- .one() method executes handler only once.
- .ready()
- .resize()
- .scroll()
- .select()
- .submit()
- .toggle()
- .trigger()
- .triggerHandler()
- .unbind() accepts a string describing the event type to unbind.
- .undelegate() removes the binding
- .unload()
- use bind/trigger to create custom event