web applications - Windows phone web app native date picker -
i working on phonegap web app windows mobile. used date field user input.
<input type="date" name="departure" id="text-from" value="" novalidate="true" />
i tried modernizr,
$(function() { if (!modernizr.inputtypes['date']) { $('input[type=date]').datepicker(); } });
it working ie 9 browser, not in windows phone simulator. how can show native date picker in windows phone web apps.
Comments
Post a Comment