Skip to content

dlundgren/jquery-toggle-event

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commits
 
 
 
 
 
 

Repository files navigation

jquery.toggleEvent

A jQuery plugin for toggling events like .toggle() did pre 1.9.

Installation

Include script after the jQuery library:

<script src="/path/to/jquery.toggle-event.js"></script>

Usage

You may have as many handlers as you want and they will be called in order

$( "#target" ).toggleEvent(
	'click',
	function() {
		alert( "First handler for .toggle() called." );
	},
	function() {
		alert( "Second handler for .toggle() called." );
	}
);

Inspiration

(https://github.com/fkling/jQuery-Function-Toggle-Plugin)

Authors

David Lundgren

About

jQuery toggleEvent plugin

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published