1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| $('.rate').click(function(){
$.ajax({
type: "GET",
url: "loco/rate-product.php",
dataType : 'json',
data: "do=rate&product_id=" + some_product_id + "&rate="+$(this).text(),
cache: false,
async: false,
success: function(result) {
avg=result.avg;
sum=result.count;
$("#votes").html("Average:" + avg);
$(".vote_count").html(sum + " vote(s)");
$('.rate').rating('select',avg);
$('input',this.form).rating('readOnly',true);
//$('input',this.form).rating('disabled',true);
//$('input',this.form).rating('return',false);
},
error: function() {
alert("Error, please try again2");
}
});
}); |
Partager