gijgo icon indicating copy to clipboard operation
gijgo copied to clipboard

"required" in the "imput tag"

Open ImhotepDE opened this issue 5 years ago • 0 comments

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. 01

Firefox 73 02

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>

ImhotepDE avatar Feb 13 '20 15:02 ImhotepDE