Hi Freinds,
I am using a jquery script in master page kindly refer to the below code and teach me how to do that Iam a beginner to Master page and jquery. I ahve tried all the websites with step by step procedures still I couldnt find the solution.
CONTENT PAGE
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<script type="text/javascript">
$(function () {
$("input[id$='TextBox1']").datepicker();
});
$(function () {
$("input[id$='TextBox2']").datepicker();
});
</script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div>
<asp:Label ID="Label1" runat="server" Text="From"></asp:Label>
<asp:TextBox ID="TextBox1" Cs ...
Go to the complete details ...