Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6725663
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T09:50:04+00:00 2026-05-26T09:50:04+00:00

I have 3 buttons within update panel. Each of them using qTip plugin. Outside

  • 0

I have 3 buttons within update panel. Each of them using qTip plugin. Outside of the Update Panel it works correct but inside it doesn’t dissappeared after the click.

Here is my code

function pageLoad() {


            $('.subindex a[title]').qtip({
                position: {
                    corner: {
                        target: 'topMiddle',
                        tooltip: 'bottomMiddle'
                    }
                },
                style: {
                    name: 'cream',
                    padding: '7px 13px',
                    color: '#350608',
                    width: {
                        max: 210,
                        min: 0
                    },
                    tip: true
                }
            });
}

and update panel

    <asp:UpdatePanel ID="UpdatePanel1" runat="server">
                    <ContentTemplate>

      <a title="Title">
        <asp:ImageButton ID="ImgOne" OnCommand="ImgOne_Click" runat="server"  /></a>
                   <a title="Title2">
        <asp:ImageButton ID="ImgTwo" OnCommand="ImgTwo_Click" runat="server"  /></a>
<a title="Title2">
        <asp:ImageButton ID="ImgThree" OnCommand="ImgThree_Click" runat="server"  /></a>    
                    </ContentTemplate>
                </asp:UpdatePanel>

any idea how to fix it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T09:50:05+00:00Added an answer on May 26, 2026 at 9:50 am

    When an UpdatePanel updates it trashes the markup within and re-renders it, so you need re-wire your jquery events to the new markup. You can try using live or delegate, or you can just run your pageLoad function again after the panel has updated. There is a jquery plugin that can help you do this or you can use some of the MS javascript to do it yourself like so

    $(function() {
        pageLoad(); //initial call for your first page load
        var prm = Sys.WebForms.PageRequestManager.getInstance();
        prm.add_endRequest(function () {
            pageLoad(); //this will be called when an UpdatePanel.Update() occurs
        });
    });
    

    Of course in my opinion, getting off webforms and into asp.net mvc would be an even better solution.

    p.s. make sure you are using UpdateMode=”Conditional” on your UpdatePanels otherwise you are wasting your time to begin with.

    p.p.s this is a newer version of that plugin i think

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an update panel within a div that I modal using the JQuery
I have 3 buttons Docked to left but I want to put them in
I have a Content Page with drop down lists within an update panel: <asp:UpdatePanel
i have a text-box within an update panel that is called on a button
I have a UserControl which contains voting buttons inside an UpdatePanel, and outside a
I have an update panel and a gridview. Within the gridview i have a
I have 3 buttons in a form. One of them is the submit button.
I have some controls within an UpdatePanel. Included are some buttons. How can I
I have a GridView which is continually rebound using a timer and is within
I have a panel containing a form (elements such as labels and textboxes within

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.