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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T09:40:09+00:00 2026-05-23T09:40:09+00:00

In this code: <!doctype html> <body> <input id=a/> <input id=b/> <script> var a=document.getElementById(a); var

  • 0

In this code:

<!doctype html>
<body>
<input id="a"/>
<input id="b"/>
<script>
var a=document.getElementById("a");
var b=document.getElementById("b");
a.addEventListener("cut",function(e){
    b.value=a.value;
    //the line above is not working as expected!
    //neither does this (as per tjm's answer): b.value=a.value.substr(0,a.selectionStart);
},true);

</script>
</body>

When I do a cut in text-box-a, I want text-box-b to have the same value as text-box-a.. but it’s not working. does anyone have any solution to this problem?

I need the solution to work in IE9.

(3 answers so far though none of them worked.. i can’t believe we can’t do this in javascript.. this is like one of the less-common-but-still-common stuff that we need ain’t 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-23T09:40:09+00:00Added an answer on May 23, 2026 at 9:40 am

    I think this works as you want it to.

    <script>
    var a = document.getElementById("a");
    var b = document.getElementById("b");
    
    a.addEventListener("cut", function(e) {
    
        var s = a.value;
        b.value = s.substr(0,a.selectionStart) + s.substr(a.selectionEnd);
    
    }, false);
    
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this piece of code: function func1(text) { var pattern = /([\s\S]*?)(\<\?(?:attrib |if
could you please help me with this code? <!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0
this is my file omploader.org/vNWJieg/1.png: and this is my code: <!DOCTYPE html PUBLIC -//W3C//DTD
I created a file called page.php with the below code. <!DOCTYPE HTML> <html> <body>
This code always works, even in different browsers: function fooCheck() { alert(internalFoo()); // We
This code function LoadContent(Id) { alert('Controls/Network/NetworkDetail.aspx?' + rnd() + '&CtlId=' + Id); $.get('Controls/Network/NetworkDetail.aspx?' +
Why is this code working? I want to take the input variable and getting
Here is my page. I need to insert whole code here. <!DOCTYPE html PUBLIC
i can't understand why this code works well but the code below no. <!DOCTYPE
I have uploaded the following simple HTML code to http://losthobbit.net/temp/anchor.html <!DOCTYPE HTML PUBLIC -//W3C//DTD

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.