Create date input
Description
The following code shows how to create date input.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<script type='text/javascript'
src="http://code.jquery.com/mobile/latest/jquery.mobile.min.js"></script>
<link rel="stylesheet" type="text/css"
href="http://code.jquery.com/mobile/latest/jquery.mobile.min.css">
</head><!-- ww w .ja v a 2 s.co m-->
<body>
<div data-role="page">
<div data-role="header">
<h1>Page Title</h1>
</div>
<div data-role="content">
<input type="text" />
<input type="date" />
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
</div>
</body>
</html>