9 lines
203 B
JavaScript
9 lines
203 B
JavaScript
$(function()
|
|
{
|
|
$(document).on('change', 'input,select,textarea,radio,checkbox', function()
|
|
{
|
|
$(this).css('border-color', '');
|
|
$(this).next('.text-error.red').remove();
|
|
});
|
|
})
|