Hey having a little trouble jquery and the hmtl5 range. I\'m try to get the values as they changed but the event listener is not capturing it. Currently my code is:
HTML
$('input[type=range]').on('input', function () { $(this).trigger('change'); });
This fires the change event on every input event.
change
input