clickquery
v1.0.0
Published
jQuery.click() in 342 characters
Downloads
7
Readme
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!');
});