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