13 lines
342 B
JavaScript
13 lines
342 B
JavaScript
/**
|
|
*
|
|
* Recaptcha V2 Only
|
|
*
|
|
* This script add dynamically a new div at the end of the contact form
|
|
* The captcha is render inside this div by Recaptcha V2
|
|
* If needed you can change the selector by overriding this file in your theme
|
|
*/
|
|
$(document).ready(function () {
|
|
$('.form-fields').append('<div id="captcha-box"></div>');
|
|
});
|
|
|