Validation Error Message | Community
Skip to main content
March 25, 2014
Solved

Validation Error Message

  • March 25, 2014
  • 1 reply
  • 1098 views
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.
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by iKhripunov
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');
            });

1 reply

iKhripunovAccepted solution
Level 4
April 2, 2014
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');
            });