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

The Archive Base Latest Questions

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

When I replaceWith an element to bring one out of the DOM, then replaceWith

  • 0

When I replaceWith an element to bring one out of the DOM, then replaceWith it back in, events registered to it do not fire. I need to events to remain intact.

Here’s my Javascript:

var replacement = $(document.createElement('span')); var original = $(this).replaceWith(replacement);  replacement     .css('background-color', 'green')     .text('replacement for ' + $(this).text())     .click(function() {         replacement.replaceWith(original);     }); 

Live demo

In the demo, when you click an element, it is replaced with another element using replaceWith. When you click the new element, that is replaced with the original element using replaceWith. However, the click handler does not work any more (where I would think it should).

  • 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. 2026-05-11T14:03:48+00:00Added an answer on May 11, 2026 at 2:03 pm

    Because when you replace the original element, events bound to it are removed. You’ll need to re-attach the click event handler on original after the call to replacement.replaceWith(original):

    $(function()  {       function replace()     {       var replacement = $(document.createElement('span'));       var original = $(this).replaceWith(replacement);        replacement          .css('background-color', 'green')          .text('replacement for ' + $(this).text())          .click(function()           {             replacement.replaceWith(original);             original.click(replace);          });    }     $('.x').click(replace); }); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

var gethtml = $(#topmenu > li.l89 a).text().split(' ')[1].replaceWith('Any World'); The text is not changing
I need to grab the words out of this string and replace with AND
I'm trying to replace a single element with three other elements, using jQuery's replaceWith,
I want an element to first be replaced with a div then that div
Is there a trick to inject arbitrary content into the DOM, and then select
i have created list of elements. if one element is highlighted (using buttons 'prev'
Is there a jQuery function similar to replaceWith() to replace an element with a
I want to listen to some of the events fired by HTML5 <audio> element.
I'm trying to understand why $('#title').replaceWith('ha'); will work outside the drop: function(event, ui) {}
I used to use this script for jquery email obfuscation: $(.replaceAt).replaceWith(@); $(.obfuscate).each(function () {

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.