Hodnoceni pocet

<script>
// Using .one() so the handler is executed at most once
// per element per event type
$( document ).ready(function() {
$( ".product .stars-wrapper" ).each(function() {
var starRating = $( this ).text() + " (" + $( this ).attr( "data-micro-rating-count" ) + "x) ";
$( this ).append( starRating );
});
});
</script>