jQuery Mobile width of input type date on iOS
by dcardoso
HTML
<script src="http://code.jquery.com/mobile/latest/jquery.mobile.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/latest/jquery.mobile.min.css">
<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>