I have an asp:TextBox associated to a jquery DatePicker. This input has a onTextChangedEvent that updates a Literal Control.
All this code is inside an UpdatePanel
Use pageLoad, it fires on partial postbacks:
pageLoad
function pageLoad() { $("#EditFromDate").datepicker({ ... }); }
$(document).ready() and pageLoad() are not the same!