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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T11:08:26+00:00 2026-05-23T11:08:26+00:00

I want to do something when a keypress changes the input of a textbox.

  • 0

I want to do something when a keypress changes the input of a textbox. I figure the keypress event would be best for this, but how do I know if it caused a change? I need to filter out things like pressing the arrow keys, or modifiers… I don’t think hardcoding all the values is the best approach.

So how should I do 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-23T11:08:26+00:00Added an answer on May 23, 2026 at 11:08 am

    In most browsers, you can use the HTML5 input event for text-type <input> elements:

    $("#testbox").on("input", function() {
        alert("Value changed!");
    });
    

    This doesn’t work in IE < 9, but there is a workaround: the propertychange event.

    $("#testbox").on("propertychange", function(e) {
        if (e.originalEvent.propertyName == "value") {
            alert("Value changed!");
        }
    });
    

    IE 9 supports both, so in that browser it’s better to prefer the standards-based input event. This conveniently fires first, so we can remove the handler for propertychange the first time input fires.

    Putting it all together (jsFiddle):

    var propertyChangeUnbound = false;
    $("#testbox").on("propertychange", function(e) {
        if (e.originalEvent.propertyName == "value") {
            alert("Value changed!");
        }
    });
    
    $("#testbox").on("input", function() {
        if (!propertyChangeUnbound) {
            $("#testbox").unbind("propertychange");
            propertyChangeUnbound = true;
        }
        alert("Value changed!");
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Currently I'm doing something like this in markup <input type=text ONKEYPRESS=InputNumeric(event); id=txtNumber /> But
I have something like: <p:inputText...> <p:ajax event=keyup update=somefield listener=#{someBean.doSomething}/> </p:inputText> But I don't want
I want something like an std::map , but I only want to see if
i want something like this the user enter a website link i need check
I want something like this: <msxsl:script language=C#> ??? getNodes() { ... return ... }
I want something like a canvas, but where i'd be able to manipulate pixels
i want something like this: http://www.someniceandreliableurl.com/username and catch the username. I want to make
I want something like this: public void CopyIteratorIntoList(Iterator<Foo> fooIterator) { List<Foo> fooList = new
I want to convert a String into KeyEvent to do something like this :
Lets say I have something like this: <tr> <td><input type=text /></td> <td>Somevalue</td> <td><intput type=text

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.