Click here to Skip to main content
15,867,568 members
Articles / Web Development

ASP.NET – jQuery is not Working in UpdatePanels

Rate me:
Please Sign up or sign in to vote.
4.89/5 (17 votes)
28 Jan 2013CPOL1 min read 113.3K   18   13
When using JavaScript or jQuery in UpdatePanel enabled web page, everything will work fine at the first page load, but after any asynchronous post back happens by UpdatePanel, all JavaScript and jQuery effects will vanish.

UpdatePanel

Introduction

ASP.NET UpdatePanel control allows to build rich, client-centric Web applications. UpdatePanel controls refresh only selected part of the page instead of refreshing the whole page with a post back. In another words, this is performing a partial-page update. A Web page that contains a ScriptManager control and one or more UpdatePanel controls can automatically participate in partial-page updates, without custom client script.

When using JavaScript or jQuery in UpdatePanel enabled web page, everything will work fine at the first page load, but after any asynchronous post back happens by UpdatePanel, all JavaScript and jQuery effects will vanish.

Why is this Happening?

Because when the UpdatePanel post back triggers, the existing markup will overwrite with the markup generated by UpdatePanel on the post back, which destroys all event handlers from HTML elements in the UpdatePanel.

What are the Solutions?

There are a couple of ways to fix this. In this article, IMO the easiest solution for this problem is to use Sys.Application inside UpdatePanel to call JavaScript, jQuery functions after each Asynchronous post back event.

Example

In the example below, I used an asp button for post back event and jQuery to show a message when Click Me! link is clicked.

JavaScript/jQuery function:

JavaScript
<script type="text/javascript">
    // JavaScript function to call inside UpdatePanel
    function jScript() {
        $("#click").click(function () {
            alert("Clicked Me!");
        });
    }
</script>

ASP.NET UpdatePanel with JavaScript/jQuery re-call function:

ASP.NET
<%-- Script Manager for ASP.NET AJAx --%>
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
    <%-- // Script Manager End --%>
    <%--ASP.NET UpdatePanel control to refresh page without post back--%>
    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
    <%-- Content template to put all ASP.NET controls for AJAX --%>
        <ContentTemplate>
        <%-- Re-Calling JavaScirpt/jQuery function on each Asynchronous post back. --%>
            <script type="text/javascript" language="javascript">
                Sys.Application.add_load(jScript);
            </script>
            <%-- // Re-Calling function End --%>
            <%-- ASP.NET button for post back --%>
            <asp:Button ID="btnPostBack" runat="server" 
               OnClick="btnPostBack_Click" Text="Click To Postback" />
            <%-- // ASP.NET button End --%>
            <%-- Link for showing the message on its click event --%>
            <a href"#" id="click">Click Me!</a>
            <%-- // Link End --%>
        </ContentTemplate>
        <%-- // Content template End --%>
    </asp:UpdatePanel>
    <%-- // ASP.NET UpdatePanel End --%>

ASP.NET (C#) code for button:

C#
protected void btnPostBack_Click(object sender, EventArgs e)
{
    btnPostBack.Text = "UpdatePanel PostBack Happened";
}

Conclusion

After calling JavaScript/jQuery functions inside UpdatePanel using Sys.Applicaiton.add_load() event handler, you will be able to solve the problem.

Feel free to comment, suggest or give your feedback.

The post jQuery $(document).ready is not Working in UpdatePanels – ASP.NET appeared first on Noor Ahmad Feroozi's Blog.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Ministry of Education
Afghanistan Afghanistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionBenefits over "get_isPartialLoad" solution Pin
pmaree29-Jan-13 2:45
pmaree29-Jan-13 2:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.