xref: /plugin/captcha/script.js (revision a287d3157c24c1f9abd7b2d70c688e6cbd4220b1)
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