I am trying to implement an MVC3 DatePicker but having trouble. I have the following code:
<script type="text/javascript"> /// <reference path="jquery-1.5.1.js" />/// <reference path="jquery-ui-1.8.11.js" /> $(document).ready(function () { $('.date').datepicker({dateFormat: "dd/mm/yy"});}); </script> <div> @Html.TextBox("SRRDate", Model.SRRDate.ToString(), new { @class = "date" }) Start Date </div> However, I am getting an "Microsoft JScript runtime error: Object doesn't support this property or method" in jquery-1.5.1-min.js
Any ideas?