SOLVED

Re: Validation Error Message

Go to solution
Anonymous
Not applicable
how can you change the text of the Telephone Vailidation error message. e.g must be phone number, 555-1741-596

I was trying to change it through the html custom editor and the message in html appears to be in 
.mktoErrorDetail

Any help would be greatly appricated.
Tags (1)
1 ACCEPTED SOLUTION
Igor_Khripunov
Level 4
The Validation Error Message generated using a JavaScript. If you want change error message for "Phone" field you try this little JQuery-script:

 $('#Phone').click(function () {
                $('.mktoErrorMsg').html('Your error text example...');
                $('.mktoError').css('bottom', '-35px');
            });

View solution in original post

1 REPLY 1
Igor_Khripunov
Level 4
The Validation Error Message generated using a JavaScript. If you want change error message for "Phone" field you try this little JQuery-script:

 $('#Phone').click(function () {
                $('.mktoErrorMsg').html('Your error text example...');
                $('.mktoError').css('bottom', '-35px');
            });