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 8837115
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T09:38:43+00:00 2026-06-14T09:38:43+00:00

I am loading a ‘password-reset-success-message’ div into a ‘password-reset’ div dynamically as shown in

  • 0

I am loading a ‘password-reset-success-message’ div into a ‘password-reset’ div dynamically as shown in the below snippet.The ‘password-reset-success-message’ div is hidden on page load and is overwritten to the ‘password-reset’ div as shown below.

    $("#password-reset").html($("#password-reset-success-message").html());

Now the ‘password-reset-success-message’ div has a ‘btnPasswordResetOK’ button which will close the password reset modal dialog.But this click() event is not getting binded. I am not getting the alert message. I am doing all of this wrapped inside the document ready.

     $(document).ready(function(){  

       $("#btnPasswordResetOK").click(function() {

         alert();
       });

    });

Note: This question is almost similar to my question..but there are not answers for it.

UPDATE : I binded after updating the html with the hidden div and it works ! , code snippet below

      $("#password-reset").html($("#password-reset-success-message").html());

       $("#btnPasswordResetOK").click(function() {

            alert();
       });
  • 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-06-14T09:38:44+00:00Added an answer on June 14, 2026 at 9:38 am

    delegate it to the parent element you are adding the html to

    if using jQuery 1.7+ with .on()

    $("#password-reset").on('click','#btnPasswordResetOK',function(){
    
    })
    

    with delegate

    $("#password-reset").delegate('#btnPasswordResetOK','click',function(){
    
    })
    

    From jQuery docs on which method to use

    $(selector).live(events, data, handler); // jQuery 1.3+

    $(document).delegate(selector, events, data, handler); // jQuery 1.4.3+

    $(document).on(events, selector, data, handler); // jQuery 1.7+

    By delegating, you bind the event handler to a static parent element that doesn’t change and exists at the time of binding. You specify the element and the events you want to listen to, and when the event bubbles up it will get handled by the static parent element.

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

Sidebar

Related Questions

while loading a page i am using a animation, wid=jQuery(window).width()+400; jQuery('#div').animate({'marginLeft' : '+='+wid+'px'},{queue:false, duration:20000
Problem: Loading a variable into a div based on choice of radio button. HTML
Loading images into Flex (size < 100kb) causes IE7 memory increase by a megabyte
On loading the page I want to pass a value to my javascript function
After loading dynamic content to a DIV, I'd like to add a Close option,
Loading multiple child forms from a loop into a MDI parent form. They are
When loading an image into memory, does .Net use DDB, DIB, or something else
I´m loading data from MySQL DB into Java application. How to define column type?
When loading a page, I have the following in my controller: request.setAttribute(myAtt, Testing); I
Loading new content in a HTML page when users reach the bottom is quite

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.