| Server IP : 5.129.245.98 / Your IP : 216.73.217.98 Web Server : Apache/2.4.66 (Debian) System : Linux 1b8c17c336b9 6.8.0-111-generic #111-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 11 23:16:02 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/themes/rehub-theme/js/ |
Upload File : |
jQuery(document).ready(function($) {
'use strict';
//Comment filtering
$(document).on('click', '#rehub-comments-tabs span', function() {
if(typeof rating_tabs_ajax_send!=='undefined' && rating_tabs_ajax_send)
return;
var post_id = $('#rehub-comments-tabs').data('postid');
var rating_tabs_ajax_send = true;
var p = $(this).parent().children().removeClass('active');
$(this).addClass('active');
if ($(this).data('tabid')==1) {
$('#loadcomment-list').html('');
$('#tab-1').show();
rating_tabs_ajax_send = false;
return;
}
$.ajax({
type: 'post',
data: 'action=show_tab&post_id='+post_id+'&tab_number='+$(this).data('tabid')+'&posttype='+$(this).data('posttype')+'&rating_tabs_id='+rhscriptvars.rating_tabs_id,
url: rhscriptvars.ajax_url,
beforeSend: function() {
$('#tab-1').hide();
$('#loadcomment-list').html('<div class="text-center loadingcomment"><i class="rhicon rhi-sync rhi-spin"></i></div>');
},
error: function(jqXHR, textStatus, errorThrown) {
$('#loadcomment-list').html('error: '+errorThrown);
},
success : function(html_data) {
rating_tabs_ajax_send = false;
$("#loadcomment-list").html(html_data);
}
});
});
});