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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:41:40+00:00 2026-05-25T02:41:40+00:00

I have an input field with class named form_inputext1. I am doing some action

  • 0

I have an input field with class named “form_inputext1”.

I am doing some action when pressing ENTER, using this code:

jQuery(".form_inputext1").keypress(function(event) {
      console.log(event.keyCode);
      if (event.keyCode == '13' || event.which == '13') {
         event.preventDefault();

         jQuery("#addMoreOptions").click();

         return false;
      }
    });

This part works fine. One of the things it does is it adds one more input field of class “form_inputext1” as a result of an ajax call.

The problem is this newly added field is not associated with the keypress event I wrote. I assume that’s because the jQuery code only attach the event to the existing fields, not to the fields added in the future.

How can I work around this? I want this function to apply to onkeypress even for inputs that are not in the DOM yet.

  • 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-25T02:41:41+00:00Added an answer on May 25, 2026 at 2:41 am

    YOu can use Jquery’s live:

    jQuery(".form_inputext1").live('keypress', function(event) {
          console.log(event.keyCode);
          if (event.keyCode == '13' || event.which == '13') {
             event.preventDefault();
    
             jQuery("#addMoreOptions").click();
    
             return false;
          }
    });
    

    Or you can add the keypress event when you create the element, which will give you much better performance:

    $('.clicker').click(function() {
        $('<div class="clicker" />').text('new').appendTo($(this)).keypress(function(event) {
            alert(event.which);
        })
    })
    

    Example of that

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an input field which when the enter key is pressed (as there
I have a form that looks something like this <form action=# class=ajax_form method=post id=comment_form
I have this as template account_form.html <form action=/contact/ method=post> {% for field in form
I have a model named Domain which looks like this: class Domain(models.Model): Model for
If I have a model named Client and controller that looks like this class
I have an input field on my page where the user will type in
I have an input field where both regular text and sprintf tags can be
I have an input field that is by default set to type=text so that
I have an input field which has a placeholder text. I want one word
I have an input field whose name is an MD5 string e.g.: <input type=hidden

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.