
Hello Sir
I am using date-picker in my web page. But i need to put date-picker on multiple text fields without using different "id" for text fields.
Please help me and give me some code line also.
Thanks in advance

I use a CSS class instead:
<input type="text" id="BeginDate" class="calendar" /> <input type="text" id="EndDate" class="calendar" />
Then, in your document.ready function:
$('.calendar').datepicker();
Using it that way for multiple calendar fields works for me.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.