Hi i'm new member & i have question in JQuery and ASP.NET ?
I add JQuery to my project (datepicker)
when i run the page its give me error
(Microsoft JScript runtime error: Object doesn't support this property
or method)
i don't face any problem with firefox only IE
this is the code :
<link type="text/css" href="JQuary/css/smoothness/jquery-
ui-1.7.1.custom.css" rel="stylesheet" />
<script type="text/javascript" src="JQuary/js/jquery-1.3.2.min.js"></
script>
<script type="text/javascript" src="JQuary/js/jquery-
ui-1.7.1.custom.min.js"></script>
<script type="text/javascript">
$(function() {
$("input[id$='txtDate']").datepicker({
inline: true
});
});
</script>
<body>
<asp:TextBox class="datepicker" ID="txtDate" runat="server"
CssClass="style2" Width="125px"></asp:TextBox>
</body>