<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
$(document).ready(
function () {
$("input[id$='txt_ClientIntakeDate']").val("Text From Jquery");
$("input[id$='txt_ClientIntakeDate']").datepicker();
}
);
I added the above code in the asp.net page which contains master page. The first statement is working and display the text in the text box. and the second statement is displaying error"Object doesn't support this property or value". I added both jQuery and jQuery UI reference. I run it in IE and firefox. Do you have any idea about this error.