Company logo
  • Empleos
  • Bootcamp
  • Acerca de nosotros
  • Para profesionales
    • Inicio
    • Empleos
    • Cursos y retos
    • Preguntas
    • Profesores
    • Bootcamp
  • Para empresas
    • Inicio
    • Nuestro proceso
    • Planes
    • Pruebas
    • Nómina
    • Blog
    • Comercial
    • Calculadora

0

232
Vistas
Recaptcha onclick event

I want to fire a jQuery event onclick when the user selects the recaptcha checkbox.

This is the code I have:

<div id="reCaptcha" data-sitekey="XXXXX"></div>

Is this possible to do? I've tried the usual jQuery onclick event (see below) for that element but to no avail.

$j('#reCaptcha').on('click', function(event) { 
    alert("YES PLEASE!");
});
9 months ago · Santiago Trujillo
2 Respuestas
Responde la pregunta

0

HTML:

<div id="reCaptcha" data-sitekey="XXXXX"></div>

Then:

$j('#reCaptcha').on('click', function(event) { 
    alert("Your code works!");
});
9 months ago · Santiago Trujillo Denunciar

0

reCaptcha have callback function which you can provide by using data as eg

<div id="reCaptcha" data-callback="thecallback"
 data-sitekey="XXXXX"></div>

then you can write you call back after click

function thecallback(){
alert("Clicked")
}

that is what is legally possible hp[e it will help you

9 months ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos