jquery-dragless-click

Better jQuery click event that's not invoked when you drag or select text

Usage no npm install needed!

<script type="module">
  import jqueryDraglessClick from 'https://cdn.skypack.dev/jquery-dragless-click';
</script>

README

jquery.draglessClick

Better jQuery click event that's not invoked when you drag or select text

npm bower

Usage:

$(function() {
    $('p').on('draglessClick', function handler(e) {
        // e is real click event from browser
        alert("You've really clicked this item");
        $(this).off('draglessClick', handler);
    });
    $('.container').on('draglessClick', 'ul li', function() {
       alert("You've clicked on li element");
    });
});

draglessClick event use mousedown, mouseup and click events added to element and mousemove added to windows object.

NOTE: names of the events in jQuery are case sensitive so draglessclick will not work.

Demo

https://codepen.io/jcubic/pen/QZxRLd

License

Released under MIT license

Copyright (c) 2018 Jakub Jankiewicz