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

  • Home
  • SEARCH
  • 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 6116353
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:11:47+00:00 2026-05-23T15:11:47+00:00

i have a text-box within an update panel that is called on a button

  • 0

i have a text-box within an update panel that is called on a button click, and this is done by jquery but becuase the text-box has an ontextchanged event i added to the update-panel and the jquery doesn’t only works one time after that it stopped.

here is my aspx code:

<asp:UpdatePanel ID="up2" runat="server">
            <ContentTemplate>
                <asp:TextBox ID="notepad" runat="server" AutoPostBack="true" OnTextChanged="insNotes"  
                    TextMode="MultiLine" CssClass="notepad"  />
            </ContentTemplate>
            <Triggers>
                <asp:AsyncPostBackTrigger ControlID="notepad" EventName="TextChanged" />
            </Triggers>
        </asp:UpdatePanel>

and here is my jquery:

$(function () {
$("#padToggle").toggle(function (pad) {
    $(".notepad").css("z-index", "4").animate({ top: "5px" }, 1000);
    $("#padToggle").css("z-index", "4").animate({ top: "5px" }, 1000);
    $(".notepad").focus();
}, function (pad) {
    $(".notepad").animate({ top: "95%" }, 1000);
    $("#padToggle").animate({ top: "92.5%" }, 1000);
});
$(".notepad").blur(function (pad) {
    $(".notepad").animate({ top: "95%" }, 1000);
    $("#padToggle").animate({ top: "92.5%" }, 1000);
    $(".notepad").blur();
});

});

i tried to add a pageLoad() Ajax function but still didn’t work, also tried to bind() and unbind() but it still didn’t work.

what is the problem , thanks.

  • 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-23T15:11:48+00:00Added an answer on May 23, 2026 at 3:11 pm

    The reason why this might happen is because once you use the UpdatePanel it refreshes the textbox from the DOM which removes all events you have associated with it. One possibility is to use the .live() method to subscribe for events with this textbox.

    For example instead of:

    $(".notepad").blur(function (pad) {
        $(".notepad").animate({ top: "95%" }, 1000);
        $("#padToggle").animate({ top: "92.5%" }, 1000);
        $(".notepad").blur();
    });
    

    you could try this:

    $('.notepad').live('blur', function (pad) {
        $('.notepad').animate({ top: "95%" }, 1000);
        $('#padToggle').animate({ top: "92.5%" }, 1000);
        $('.notepad').blur();
    });
    

    In fact the .delegate() method is recommended to be used compared to .live().

    • 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 a custom control that has an update panel in it. Within the
I have a text box that is going to be populated with a comma
I have a text box which has a Ajax calendar extender attached. You click
I want to have a text box that the user can type in that
I have a panel that may or may not be within other panels. I'm
Within an asp.net webform I have some jquery that controls the positioning of elements
I have an asp.net 3.5 update panel and I have a few textboxes that
I have text that I want to display centered (both vertically and horizontally) within
I have a regular text-box: <input type=text> I use jQuery to handle key-related events:

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.