xref: /plugin/captcha/script.js (revision e4b6d2ff3833b562266d872c72ee5418645d335c)
1/**
2 * Autofill and hide the whole captcha stuff in the simple JS mode
3 */
4jQuery(function () {
5    var $code = jQuery('#plugin__captcha_code');
6    if (!$code.length) return;
7
8    var $box = jQuery('#plugin__captcha_wrapper input[type=text]');
9    $box.first().val($code.text().replace(/([^A-Z])+/g, ''));
10
11    jQuery('#plugin__captcha_wrapper').hide();
12});
13