Sana Joseph
Sana Joseph

Reputation: 1948

Access Android's date picker using Jquery

I'm working on an application for IOS/Android using phonegap[cordova 2.2.0]

I use jquery/Html5.

For IOS, I just choose input type to be "date" or "time" then the datepicker/[timepicker is displayed when I click on the input.

   <input type="time" name="basic" value=""  />
   <input type="date" name="reminder" value=""  />

But this isn't working with Andriod, so is there any other method in which I can display the date picker using Html5/Javascript/Jquery?

Upvotes: 1

Views: 1150

Answers (1)

Stan
Stan

Reputation: 4239

I think, you have two ways to do it:
1. Android Datepicker Plugin
2.Mobiscroll

Mobiscroll works both on Android and iOS, but it is slow.
Native plugin on Android is quite good, but not so flexible.

Upvotes: 2

Related Questions