crucialnet/contact-me/js/main.js

7 lines
156 B
JavaScript

$('.js-input').keyup(function() {
if( $(this).val() ) {
$(this).addClass('not-empty');
} else {
$(this).removeClass('not-empty');
}
});