Limit checkbox selections

Limiting selections in the browser To limit the number selections of a Checkbox add the following code to . 1 234 5 6 7 8 jQuery(function ($) {     var $checkboxes = $(’.quform-field-1_3’).click(function () {        if ($checkboxes.filter(’:checked’).length > 2) {            $(this).prop(’checked’, false);         … Continue reading Limit checkbox selections