Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
It lets me submit without entering anything in reCaptcha field.
It just doesn't work for me
<form>
...
<cf_recaptcha
privateKey="xxxxx"
publicKey="xxx">
<input type="Submit" name="submit">
</form>
I just need it to prevent from being submitted if the value is bad
<cfif isDefined("form.submit")>
<cfoutput>recaptcha says #form.recaptcha#</cfoutput>
</cfif>
[/code]
#form.recaptcha# is a simple true/false value. Just check it and do one thing if it is true, another if it is false.
Code:<cfif isDefined("form.submit")> <cfif form.recaptcha> accepted. do one thing <cfelse> rejected. do something else </cfif> </cfif>
----------------------------------