SOLVED

Validation Error Message

Go to solution
Anonymous
Not applicable

Validation Error Message

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

Accepted Solutions
Igor_Khripunov
Level 4

Re: Validation Error Message

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

Re: Validation Error Message

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');
            });