Server IP : 49.212.180.16 / Your IP : 3.17.164.81 Web Server : Apache System : FreeBSD www2606.sakura.ne.jp 13.0-RELEASE-p14 FreeBSD 13.0-RELEASE-p14 #2: Mon Dec 9 13:54:55 JST 2024 root@www5301.sakura.ne.jp:/usr/obj/usr/src/amd64.amd64/sys/GENERIC amd64 User : utannto ( 1076) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/utannto/www/hironaka.biz/wp-content/plugins/feedzy-rss-feeds/js/ |
Upload File : |
/* global feedzy, ajaxurl */ /* jshint unused:false */ (function($) { $(document).ready(function(){ init(); }); function init(){ // listen to the validate button $('button.validate-category').on('click', function(e){ e.preventDefault(); var button = $(this); button.html(feedzy.l10n.validating); $.ajax({ url: ajaxurl, method: 'POST', data: { action: 'feedzy_categories', _action: 'validate_clean', security: feedzy.ajax.security, id: button.attr('data-category-id') }, success: function(data){ button.html(feedzy.l10n.validated.replace('#', data.data.invalid)); }, complete: function(){ setTimeout(function(){ button.html(feedzy.l10n.validate); }, 5000 ); } }); }); } })(jQuery, feedzy);