jquery - How to setup bootstrap validator to do not show message when an input value is not correct -


i setup bootstrap validator show red labels when input text not valid or required, cannot remove default message shown when input not valid.

i tried force message message: ' ' default message come out anyway.

this code:

$('#myform').bootstrapvalidator({             message: ' ',             fields: {                 nome: {                     validators: {                         notempty: {                         }                     }                 }             }); 

just found can done moving message: ' ' inside notempty

$('#myform').bootstrapvalidator({         fields: {             nome: {                 validators: {                     notempty: {                          message: ' '                     }                 }             }         }); 

Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -