clickquery

jQuery.click() in 342 characters

Usage no npm install needed!

<script type="module">
  import clickquery from 'https://cdn.skypack.dev/clickquery';
</script>

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!');
});