Unfortunately, this is currently not possible if you do not want to implement it yourself. jQuery Mobile datepicker was never planned to be officially released as a widget (perhaps someday, but it was not officially announced). Available code is nothing more than a wrapper around jQuery UI datepicker.
You can check it yourself, there is snipet code here that shows the datupixer on the pagecreate event:
$( ".ui-page" ).live( "pagecreate", function(){ $( "input[type='date'], input:jqmData(type='date')" ).each(function(){ $(this).after( $( "<div />" ).datepicker({ altField: "#" + $(this).attr( "id" ), showOtherMonths: true }) ); }); });
You can change it yourself, but what's the point. If you don't have time for a custom implementation, take a look at these third-party jQuery mobile developers:
Also take a look at my other similar article: fooobar.com/questions/1469226 / ...
source share