How to bind an event to appended element in jQuery?

Is there a way to get delete to register as a keypress event in JQuery?

  • Right now when I bind a keypress event to a input text field it only registers when I add new characters, deletes do not set off the keypress event.

  • Answer:

    Many browsers don't fire the keypress event for the delete key, but they will fire it on a keydown or keyup event. $('#your_input').bind('keydown',function(e){     if(e.keyCode == 46) //do something })

Ian McDaniel at Quora Visit the source

Was this solution helpful to you?

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.