xref: /plugin/captcha/script.js (revision a9f8384b0de5db7ffc6d6712a97a82dbd005d986)
1/**
2 * Autofill and hide the whole captcha stuff in the simple JS mode
3 */
4jQuery(function(){
5    var code = jQuery('#plugin__captcha_code')[0];
6    if(!code) return;
7
8    var box  = jQuery('#plugin__captcha')[0];
9    box.value=code.innerHTML;
10
11    jQuery('plugin__captcha_wrapper')[0].style.display = 'none';
12});
13