Click Event for Checkbox


$('#container').on('click', 'input:checkbox', function () {
      var elemName = $(this).attr('name');
});


Back to Notes