top rated
Newsletter
Filtri attivi
Smerigliatrice angolare...
document.addEventListener("DOMContentLoaded", function() {
const $ = jQuery;
const productId = 3;
const productReview = $('#product-list-reviews-3');
const productCommentGradeUrl = 'https://shop.reabcommerciale.com/module/productcomments/CommentGrade';
$.get(productCommentGradeUrl, { id_product: productId }, function(jsonResponse) {
var jsonData = false;
try {
jsonData = JSON.parse(jsonResponse);
} catch (e) {
}
if (jsonData) {
if (jsonData.id_product && jsonData.comments_nb) {
$('.grade-stars', productReview).rating({ grade: jsonData.average_grade, starWidth: 16 });
$('.comments-nb', productReview).html('('+jsonData.comments_nb+')');
productReview.closest('.thumbnail-container').addClass('has-reviews');
productReview.css('visibility', 'visible');
}
}
});
});