| Server IP : 69.72.244.102 / Your IP : 216.73.216.164 Web Server : LiteSpeed System : Linux s3434.fra1.stableserver.net 4.18.0-513.24.1.lve.2.el8.x86_64 #1 SMP Fri May 24 12:42:50 UTC 2024 x86_64 User : konzalta ( 1271) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/konzalta/public_html/wp-content/plugins/bhs/assets/ |
Upload File : |
jQuery(document).ready(function($){
// Toggle input mode
$('#bhs-mode').change(function(){
var mode = $(this).val();
if(mode=='quick'){
$('.quick-input').show();
$('.precise-input').hide();
} else {
$('.quick-input').hide();
$('.precise-input').show();
}
});
// Initial mode
$('#bhs-mode').trigger('change');
// Calculate score
$('#bhs-calc-btn').click(function(){
var data = { action:'bhs_calculate', mode: $('#bhs-mode').val() };
$('#bhs-form').serializeArray().forEach(function(field){ data[field.name]=field.value; });
$.post(bhs_ajax.ajax_url, data, function(response){
if(response.success){
$('#bhs-results').show();
$('#bhs-score').text(response.data.bhs).css('color',response.data.color);
var kpiHtml = '<ul>';
$.each(response.data.scores, function(k,v){ kpiHtml += '<li>'+k+': '+v+'</li>'; });
kpiHtml += '</ul>';
$('#bhs-kpi-results').html(kpiHtml);
$('#bhs-ai-suggestions').html('<strong>AI Tip:</strong> '+response.data.ai_suggestion);
}
});
});
});