Having issues with jquery ui datepicker and IE

Posted by Howlingfish on Stack Overflow See other posts from Stack Overflow or by Howlingfish
Published on 2010-04-07T05:31:48Z Indexed on 2010/04/07 5:33 UTC
Read the original article Hit count: 224

Filed under:
|

This works perfectly in Firefox but doesnt work in ie i get the following error "Line: 640 Error: Object doesn't support this property or method"

Here is my code

  <asp:TextBox ID="calendardatedob" CssClass="calendardatedob" runat="server" AccessKey="n" TabIndex="4" MaxLength="40" /><span
                    class="req">*</span> e.g dd/mm/yyyy

Here is my jquery

        $(document).ready(function() {

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

im referencing these

> <script
> src="../../assets/js/jquery.min.js"
> type="text/javascript"></script>
> <script
> src="../../assets/js/jquery-ui-1.8.custom.min.js"
> type="text/javascript"></script>

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about ASP.NET