0

I have two asp.net textboxes I need code for input mask with time format and also for date format. Please provide url of jquery file also. Thank you

1 Answers1

0

Try this,

HTML

<input type="text" id="date" />
<input type="text" id="time" />

SCRIPT

jQuery(function($){
   $("#date").mask("99/99/9999");
    $("#time").mask("99:99");
});

Read http://digitalbush.com/projects/masked-input-plugin/#demo See jQuery-Mask-Plugin

Download the latest from github repo

Demo

Rohan Kumar
  • 40,431
  • 11
  • 76
  • 106