gijgo
gijgo copied to clipboard
"required" in the "imput tag"
Hi, If I put a "required" in the "imput tag" it will be triggered without sending a form. Is this an error or how can I fix it. Belly the "required" so I can make the imput field a required field
Thanks
IE and Chorme it works without problems.

Firefox 73

The error only occurs with Firefox 73. With Safari, IE and Chorme it works without problems.
<html>
<head>
<meta charset="utf-8" />
<title>Datepicker example</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://unpkg.com/[email protected]/js/gijgo.min.js" type="text/javascript"></script>
<link href="https://unpkg.com/[email protected]/css/gijgo.min.css" rel="stylesheet" type="text/css" />
</head>
<body>
<input id="datepicker" width="276" required />
<script>
$('#datepicker').datepicker();
</script>
</body>
</html>