mbk-forms icon indicating copy to clipboard operation
mbk-forms copied to clipboard

Handling multiple forms on one page.

Open louisl opened this issue 5 years ago • 1 comments

Thanks for this, may have found a minor flaw though. If you have multiple forms on one page it will only fill out the first form. To fix this I changed it to a loop.

// Changed...
document.querySelector('.g-recaptcha-response').value = token
// to...
var elements = document.querySelectorAll('.g-recaptcha-response');
for (var i = 0; i < elements.length; i++) {
    elements[i].value = token;
}

louisl avatar Jan 24 '20 19:01 louisl

Would accept a PR for the README for this - super valid point!

ryangittings avatar Mar 14 '22 10:03 ryangittings