recaptcha

lawrence whittemore asked on May 23, 2019 14:54

how do I change the recaptcha error message "The response parameter is missing" that shows if the box is not checked? doesn't seem to work in the form controls.

Recent Answers


Brenden Kehren answered on May 23, 2019 20:03

Check out this SO post. I believe this might be what you're looking for.

0 votesVote for this answer Mark as a Correct answer

Gareth Jones answered on September 5, 2019 12:02

A possible solution for this issue could also be adding a javascript block after your field - for example:

<script type="text/javascript">
$(function() {
    $("#ctl01_ContactForm_viewBiz_Captcha_lbe").html("Please tick the box above");
});
</script>
0 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.