13 lines
259 B
JavaScript
13 lines
259 B
JavaScript
$(function() {
|
|
'use strict';
|
|
|
|
$('.form-control').on('input', function() {
|
|
var $field = $(this).closest('.form-group');
|
|
if (this.value) {
|
|
$field.addClass('field--not-empty');
|
|
} else {
|
|
$field.removeClass('field--not-empty');
|
|
}
|
|
});
|
|
|
|
}); |