1.0.0 • Published 10 years ago

clickquery v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

clickQuery

jQuery's click in 342 characters

Demo

Because why not?

Be warned, this is highly golfed and isn't nearly as robust as jQuery.click

Get array of objects

$(selector)

Example

$('p')
// Returns [<p>,<p>,...]

Attach click handler

$('p').click(function() {
  console.log('you clicked!');
});