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) • 349 B
JavaScript
$(function() {
$('.it-has-checkbox').on('click', function(event) {
var _target = $(this).find('input')
if ($(_target).prop('checked')) {
$(_target).prop('checked', false)
$(this).removeClass('active')
} else {
$(_target).prop('checked', true)
$(this).addClass('active')
}
event.preventDefault()
})
})