Jquery validation message insert After bootstrap add on BTN

.validate({
   errorPlacement: function(error, element) {
       if (element.next().is('.input-group-addon')) {
           error.insertAfter(element.parent('.input-group'));
       } else {
           error.insertAfter(element);
       }
   },
   onkeyup: false
})

Comments

Popular posts from this blog

Scroll After Fixed Navigation

Bootstrap CSS Customize with SCSS CSS

Best way to prevent page scrolling on drag (mobile)