Posts

Showing posts from February, 2018

jQuery Form Validation

$('#form').validate({ errorPlacement:function(error,element){ element.before(error); } }); $('#form').validate({ errorPlacement:function(){ return false; } }); $('#form').validate();