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

Popular posts from this blog

vb.net - Alternative to the T-SQL AS keyword -

php - MySQLi binding parameters in a prepared statement doesn't work unless inserted after "WHERE" -

ios - CFRelease causing crash in iPad application -