cool one works well. suppose you have html codes like the following
<form>Â
<input type="checkbox" name="mrcf-privacy" class="mrcf-input-boxes" id="mrcf-privacy" value="no"/>Â Tick to confirm you have read and agree with the <a href="/" style="text-decoration:underline; color:navy;">Privacy notice</a><br/>Â Â Â Â Â
<input type="submit" id="mrcf-submitted" name="mrcf-submitted" class="mrcf-input-boxes" value="Send"></form>
now the following jquery codes verifies if checkbox is checked.Â
jQuery(function(){Â Â Â Â Â Â
    if(jQuery('#mrcf-privacy').is(':checked')){ jQuery('#mrcf-submitted').submit(); }
});Â
Isn't that pretty simple? hope you liked it, don't forget to share and connect with me.
Â