html - how to pick or select or use mobile date picker -
i accessing site in mobile, there field called enter date & enter time,
when click date field want show mobile date picker,
how implement ?
am view site in sony ericsson k530i
html has new input types trigger specialized interfaces on mobile. if switch html5 doctype:
<!doctype html>
and use following:
<input type="date" >
you should interface you're looking for. degrade simple text input on browsers don't support html5.
Comments
Post a Comment