tessguefen
4/14/2015 - 2:24 PM

Auto Check mailchimp Email -- Checks Ship To First/Last name and email is filled out. If not, it will check as the form is filled out.

Auto Check mailchimp Email -- Checks Ship To First/Last name and email is filled out. If not, it will check as the form is filled out.

var mcbComplete = 0;
function mailChimpCheckBox() {
	if ( $('#ShipEmail').val() !== '' && $('#ShipFirstName').val() !== '' && $('#ShipLastName').val() !== '') {
		$('#newsletter_checkbox').click();
		mcbComplete = 1;
	}
}
mailChimpCheckBox();
$('#ocst_form').on('change', function() {
	if (mcbComplete === 0) {
		mailChimpCheckBox();
	}
});