Using Mvc3 razor.
I tried to implement the Jquery data picker with an inputbox on my form, I am getting this exception "Microsoft JScript runtime error: Unable to set value of the property 'currentDay': object is null or undefined" when I click on a date on the calendar.
Jquery:
$(document).ready(function () {
$(".datepicker").datepicker();
});
Html :
<div class='answer'>
<input class='datepicker' type='text' id='4' name='4' value='' />
</div>