input, change 이벤트와 and,or 연산자
$('#email').on('input', function (){
console.log("1");
});
$('#email').on('change', function (){
console.log("2");
});



true로 인식하는 자료
false로 인식하는 자료


Last updated
$('#email').on('input', function (){
console.log("1");
});
$('#email').on('change', function (){
console.log("2");
});





Last updated