appleboy / CodeIgniter-reCAPTCHA

reCAPTCHA library for CodeIgniter
https://www.google.com/recaptcha/intro/index.html
BSD 3-Clause "New" or "Revised" License
106 stars 82 forks source link

Missing 'id' for the reCAPTCHA <div> #4

Closed abuzant closed 7 years ago

abuzant commented 7 years ago

Please change line #158 in /libraries/Recaptcha.php

from: return '<div class="g-recaptcha" '.$html.'></div>';

to: return '<div id="g-recaptcha" class="g-recaptcha" '.$html.'></div>';

to give the DIV an ID so it can be accessible VIA jQuery and/or other frameworks.

appleboy commented 7 years ago

@abuzant I will take it.

appleboy commented 7 years ago

@abuzant Maybe you should try the following args.

getWidget(array("id" => "g-recaptcha"))