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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:52:11+00:00 2026-06-13T22:52:11+00:00

Is it possible to assign select() to a replaceWith() ? $(‘#foo’).one(‘click’, function() { $(this).replaceWith(‘<textarea

  • 0

Is it possible to assign select() to a replaceWith()?

$('#foo').one('click', function() {
 $(this).replaceWith('<textarea id="copy">'+$(this).text()+'</textarea>');
});

$('#copy').click(function() {
 $(this).select();
});

I’ve tried the above code but it dosen’t work (I assume this is because the replaceWith() is a fictional element (if you get what I mean)).

I have however got it working by placing onclick="this.focus();this.select()" inside the replaceWith()

$('#foo').one('click', function() {
 $(this).replaceWith('<textarea id="copy" onclick="this.focus();this.select()">'+$(this).text()+'</textarea>');
});

but would prefer it outside of the replaceWith() code like the first code is trying to do.

  • 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-13T22:52:12+00:00Added an answer on June 13, 2026 at 10:52 pm

    In your original code, you are binding the click event to a non-existant object (non-existant at the time of binding).

    The following binds the click event after inserting the textarea into the DOM and should work.

    $('#foo').one('click', function() {
      $(this).replaceWith('<textarea id="copy">'+$(this).text()+'</textarea>');
    
      // at this point, the textarea exists and the binding will work.
      $('#copy').click(function() {
        $(this).select();
      });
    });
    

    Another way is bind using on() for any click on #copy on the document object.

    $('#foo').one('click', function() {
      $(this).replaceWith('<textarea id="copy">'+$(this).text()+'</textarea>');
    });
    
    // in this case, it will work even if #copy is non-existant at the time of binding
    $(document).on('click', '#copy', function() {
      $(this).select();
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to assign to a list slice in one go, that would
Is it possible to assign php array in MySQL IN() function? for example, $numbers
Using pointer arithmetic, it's possible to assign characters from one array to another. My
Possible Duplicate: Assign click handlers in for loop I need help with a loop
I am trying to copy multiple records using one query using insert select from.
Is it possible to assign a widget width to half the available screen width,
Is it possible to assign by reference? I know that ref has to be
is it possible to assign a value to a ServerVariable(Something) using the code? instead
Is it possible to assign the value a git command like git rev-list -n
I wonder if it's possible to assign a default value for web service request

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.