.toggle()
Syntax
.toggle(handlerEven, handlerOdd[, additionalHandlers...])
Parameters
handlerEven
- A function to execute every even time the element is clicked
handlerOdd
- A function to execute every odd time the element is clicked
additionalHandlers (optional)
- Additional handlers to cycle through after clicks
Return value
The jQuery object, for chaining purposes.
Description
Bind two or more handlers to the matched elements, to be executed on alternate clicks.
For example:
<div id="target">
Click here
</div>
Event handlers can then be bound to the <div>.
$('#target').toggle(function() {
$.print('First ');
}, function() {
$.print('Second');
});
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