Disclaimer for Additional Software License Charges
Cosasco provides only one activation key per eligible device for Cosasco Data Software. Cosasco Data Online requires a separate license purchase and is sold along with ICMS system or IIU system only. If the license was acquired through a third-party vendor or distributor, kindly request that the vendor or distributor contact us directly to handle activation key requests. By proceeding with additional software license requests, you acknowledge and agree to these terms. Thank you for your cooperation. For further assistance, please contact Cosasco support – Sales@cosasco.com
Learn how we can help you
$(function() { // Put your form ID here $("#myForm").submit(function(e) { // Put your checkboxes in a DIV // give it the chkGroup ID here var checked = 0; $("#chkGroup input[type='checkbox']").each(function () { if ($(this).is(":checked")) checked++; }); // Will error if none of the checkboxes // in that div are checked if (checked < 1) { alert("Please select at least one checkbox."); e.preventDefault(); return false; } }); });