Код: Выделить всё
Код: Выделить всё
$('body').on('input', '#box-filter form[name="filter_form"]', function(e) {
...
Код: Выделить всё
$('body').on('change', '#box-filter form[name="filter_form"]', function(e) {
Код: Выделить всё
$('body').on('input', '#box-filter form[name="filter_form"]', function(e) {
var target = $( e.target );
if ( target.is( "input[type=range]" ) ) {
$(this).trigger('change');
}
Как мне это сделать?
Подробнее здесь: https://stackoverflow.com/questions/793 ... instead-of