0.0.4 • Published 6 years ago

@rq/prevent-default-wrapper v0.0.4

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
6 years ago

prevent-default-wrapper

Wraps an event or an event handler and calls preventDefault()

Installation

npm install prevent-default-wrapper

Usage

$('a').click(preventDefault(function(e) {
  // ...
}));

$('a').click(function(e) {
  preventDefault(e);
  
  // ...
});