Код: Выделить всё
Код: Выделить всё
$(document).on('input', 'form[name="filter"]', function () {
alert(this.type); // alerts undefined
});
Что я делаю не так?
Подробнее здесь: https://stackoverflow.com/questions/793 ... on-handler
Код: Выделить всё
Код: Выделить всё
$(document).on('input', 'form[name="filter"]', function () {
alert(this.type); // alerts undefined
});