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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T19:28:34+00:00 2026-05-15T19:28:34+00:00

in in Input field, if the user presses Backspace or Delete key, is there

  • 0

in in Input field, if the user presses Backspace or Delete key, is there a way to get the deleted character.

I need to check it against a RegExp.

  • 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-15T19:28:35+00:00Added an answer on May 15, 2026 at 7:28 pm

    The following will work in all major browsers for text <input> elements. It shouldn’t be used for <textarea> elements because the getInputSelection function doesn’t account for line breaks correctly in IE. See this answer for a (longer) function that will do this.

    function getInputSelection(input) {
        var start = 0, end = 0;
        input.focus();
        if (    typeof input.selectionStart == "number" &&
                typeof input.selectionEnd == "number") {
    
            start = input.selectionStart;
            end = input.selectionEnd;
        } else if (document.selection && document.selection.createRange) {
            var range = document.selection.createRange();
            if (range) {
                var inputRange = input.createTextRange();
                var workingRange = inputRange.duplicate();
                var bookmark = range.getBookmark();
                inputRange.moveToBookmark(bookmark);
                workingRange.setEndPoint("EndToEnd", inputRange);
                end = workingRange.text.length;
                workingRange.setEndPoint("EndToStart", inputRange);
                start = workingRange.text.length;
            }
        }
        return {
            start: start,
            end: end,
            length: end - start
        };
    }
    
    document.getElementById("aTextBox").onkeydown = function(evt) {
        evt = evt || window.event;
        var keyCode = evt.keyCode;
        var deleteKey = (keyCode == 46), backspaceKey = (keyCode == 8);
        var sel, deletedText, val;
        if (deleteKey || backspaceKey) {
            val = this.value;
            sel = getInputSelection(this);
            if (sel.length) {
                deletedText = val.slice(sel.start, sel.end);
            } else {
                deletedText = val.charAt(deleteKey ? sel.start : sel.start - 1);
            }
            alert("About to be deleted: " + deletedText);
        }
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to apply/remove to an input field according to a user's selection in
I need to validate two user input fields against each other in seam. Field1
I need to use jquery to add and delete input fields based on user's
I have an input edit field where the user can enter data. I want
how do I prevent the user to change the value in an input field
I'm trying to show a div when a user clicks in an input field,
TABLE bcompany companyID | cName | ... I have the input field, where user
I have a form with a few input fields. When a user clicks on
I've created a few input fields, that I am cleaning up as the user
Take an input field like this : ​<input type='number' step='1' />​​​​​​​​​​​​​​​​​ In Chrome, you

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.