As soon as I open the webpage with my form on it, it jumps straight to the ReCaptcha field. How can I make the focus stay at the top of the page?
Fixed in latest builds!
In Build 730 and higher, go to
/administrator/components/com_breezingforms/libraries/crosstec/classes
In that file, look for this code:
Code
"bfReCaptchaDiv", { theme: "'.addslashes($mdata['theme']).'", callback: Recaptcha.focus_response_field }
and replace it with:
"bfReCaptchaDiv", { theme: "'.addslashes($mdata['theme']).'" }
In Build 729 and lower, go to
/administrator/components/com_facileforms/libraries/crosstec/classes
and do the same thing:
Open the file BFQuickMode.php and in that file, look for this code
Code
"bfReCaptchaDiv", { theme: "'.addslashes($mdata['theme']).'", callback: Recaptcha.focus_response_field }
Code
"bfReCaptchaDiv", { theme: "'.addslashes($mdata['theme']).'" }
Focus should now be returned to the top of the page.