bootstrap-italia
Version:
Bootstrap Italia è un tema Bootstrap 4 per la creazione di applicazioni web nel pieno rispetto delle Linee guida di design per i servizi web della PA
14 lines (13 loc) • 338 B
JavaScript
$(function() {
$('.rating.rating-label input[type=radio]').on('click', function(event) {
var stars = $(this).val()
var starsLabel = 'stelle'
if (stars == 1) {
starsLabel = 'stella'
}
$(this)
.closest('.rating-label')
.find('legend span:not(.sr-only)')
.text(stars + ' ' + starsLabel)
})
})