How to make an element with specific class ignore a global listener? – Jquery
There is a global listener on specific input type: $('input[type["radio"]').on('change', function() { ... }); But I have another more specific radio input with its own unique_radio class: <input type="radio" class="unique_radio" name="unique_radio"> It also has its own click listener: $('.unique_radio').on('click', function()…