How do we change the action value.
opened this issue · comments
Deleted user commented
Hi
How to change the Action attribute from 'homepage'.?
if (typeof grecaptcha !== 'undefined') {
grecaptcha.ready(function () {
grecaptcha.execute('fbfbfbfbfbfbfbfbfbfbfbfbfbfbfbfbf', { 'action': 'homepage' }).then(function (token) {
document.getElementById('g-recaptcha-response').value = token;
});
});
}
Timothy D Meadows II commented
You shouldn't be using script but rather the helper as shown below.
@(Html.Recaptcha<RecaptchaV3HiddenInput>(RecaptchaSettings?.Value, new RecaptchaV3HiddenInput { Action = "Homepage" }))