$('input[type=range]').on('input', function () {
$(this).trigger('change');
});
This fires the change event on every input event.
$('input[type=range]').on('input', function () {
$(this).trigger('change');
});
This fires the change event on every input event.