I am trying to access the value of a textbox and Hidden field from jquery. I am getting value as undefined.
These controls are inside the content page of my master page.
<input id="datepickerContact" type="text" runat="server" />
<input type="hidden" runat="server" id="IAssignmentId" clientidmode="Static" />
In the javascript function :
var Insid = $("#datepickerContact");
var firstcontactDate = $("#IAssignmentId");
alert(Insid.val());
alert(firstcontactDate.val());
Thanks in advance
BB