javascriptjquerydateuser-friendly

How to realize maximally user friendly date input?


I have wrote the following code for date input:

$( "#datepicker" ).datepicker();

full DEMO

But this input is not enough friendly for user. user can type to input something wrong and confusion with date format can happen. Is there way to make date input dramatically friendly for user?

P.S.

I know I can use masks. Can you advise another options?


Solution

  • Just add readonly to the input to avoid user entering text to the input.

    DEMO