CAPTCHA = (function($) { return { set_captcha: function() { $.ajax({ url: MC.baseUrl + 'system/auth/get_captcha', dataType: "json", success: function(res) { $('#col-captcha').html(res['captcha_image']); } }); }, }; })(jQuery); $(document).ready(function() { let arg = base.read_exVal('#captcha_val'); if (arg['captcha_type'] == 1) { $('[data-toggle="tooltip"]').tooltip(); CAPTCHA.set_captcha(); $('#btn-reload-captcha').click(function() { CAPTCHA.set_captcha(); }); } });