jQuery('.rating-container').each(function(index){ var the_container = $(this); $(this).find('.rating-target').attr('id', 'rating-target-'+index); $(this).find('.rating-stars').raty({ target : '#rating-target-'+index, score : $(this).find('.rating-score').html(), cancelHint : 'Annuler ma note', click : function(score, evt) { $.ajax({ url : '/scripts/vote.php', type : 'POST', data :{ note : score, user : $(the_container).find('.user_id').html(), type : $(the_container).find('.element_type').html(), id : $(the_container).find('.element_id').html(), }, success : function(data, textStatus, jqXHR) { $(the_container).find('.rating-stars').raty('score', data); $(the_container).find('.rating-stars').raty('readOnly', true); } }); }, half : true, noRatedMsg : 'Il n\'y a pas encore de note', path : '/images/rating', scoreName : 'note', space : false, targetText : 'Il n\'y a pas de note' }); });