i am doing async postback using updatepanel. after async postback jQuery functionality not working.I'm using jQuery to wire up some mousedown mouseenter effects on html table cells that are inside an UpdatePanel. The events are bound in $(document).ready
<script type="text/javascript"> $(function () { $(".csstablelisttd").mousedown(function (e) { //mouse down code }); $(".csstablelisttd").mouseenter(function (e) { //mouse entercode }); $("#contentPlaceHolderMain_btnFix").click(function (e) {alert("Alert");//here alert is generate two times an then postback occurs //btn click code } } </script> <asp:UpdatePanel ID="updatePanelTableAppointment" runat="server"> <ContentTemplate> <table id="table" runat="server"> //table data </table> </ContentTemplate><Triggers> <asp:AsyncPostBackTrigger ControlID="btnFix" EventName="Click" /> </Triggers> </asp:UpdatePanel>