I have been searching around for a simple standard date time picker and a lot of the websites say that:
<input type="datetime" name="formStartDate">
Should produce a supported date time picker but I am having no such luck and I really don't want to go through the process of importing and downloading a whole bunch a frameworks and documents for such a simple feature...
Ok so since it's no longer supported is there a simple way to get one without a ton of frameworks? Or did the seriously just delete it without providing something else?
Ok that works great! except for I can only have one working on the page and I would like two. I think it has to do with the fact that these two snippets communicate through id and those have to unique. Can you please help me get multiple working on the same page?
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<script>
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker"></p>
</body>
</html>