I am trying to set the date using jQueryMobile in the UIWebView iOS application, the value is set correctly, but setting the date of the minimum and maximum attributes does not work.
<input type="date" data-clear-btn="false" name="date-1" id="date-1" min="2013-04-15" max="2013-09-15" value ="2013-08-15" >""
AND
$('input[type="date"]').val('yyyy-MM-dd');
When I run it on the simulator, when the date field is selected, the date selector is visible, but the minimum date is not set.
jquery-mobile ios
rajt
source share