I am using civem.js to customise my html5 form elements error messages and its all working fine.
However if user accidentally clicked on submit before ticking the required checkbox, the will be promoted with the assign error message which is fine. Now if user went back and checked it, the form will not submit asking them to check the box. it's like it wont kick the checkbox out of required mode onclick.
Here is a link http://jsfiddle.net/BqUNS/, please click submit before ticking the checkbox.
Any help would be appreciate it.
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="js/civem-0.0.6.min.js"></script>
<title></title>
</head>
<body>
<form>
<input type="text" placeholder="First name" required data-errormessage-value-missing="Please enter your first name"> <br>
<input type="checkbox" value="checked" value="checked" required data-errormessage="Please check"> <br>
<button type="submit">SUBMIT</button>
</form>
</body>
</html>