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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T05:07:27+00:00 2026-05-29T05:07:27+00:00

I did everything I could to alert something after submitting a button which has

  • 0

I did everything I could to alert something after submitting a button which has been created in runtime, I gained no success. The code is simple so I don’t post here.
Is there problem with runtime buttons that can’t accept submit event?

$(".simple_btn").click(function(e){
     $("this").submit(function(){
          return false; 
     });
});
  • 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-29T05:07:28+00:00Added an answer on May 29, 2026 at 5:07 am

    The .submit event applies to forms not buttons. So instead of:

    $('#btnId').submit(...)
    

    you probably want:

    $('#formId').submit(...)
    

    And as far as subscribing to events such as submit to dynamically added elements (that would be a <form> in your case) you could use the .on() method if you are using jQuery 1.7 or the .delegate() method if you are using an older version.

    $(function() {
        // subscribe to the submit event of a form with id="formId"
        // that is either currently present in the DOM or it will be
        // added dynamically in the future
        $(document).on('submit', '#formId', function() { 
            // the form was submitted => do some processing ...
        }); 
    });
    

    And here’s a live demo in which we use the .on() method to subscribe to the submit event of a form that is dynamically added to the DOM at a later stage.

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

Sidebar

Related Questions

I did everything I could to make it happen, but without success. The problem
Did you ever had a bug in your code, you could not resolve? I
Did anyone try that feature and has some feedback? Or Does anyone know some
What is the -(void)viewDidUnload is good for? Could I not just relase everything in
Had to re-set up everything on my laptop recently, which included reinstalling XAMPP. While
I've been struggling with this for a few hours. Everything just stopped working and
I have an app that I have been working on and I did a
Our SVN server has recently moved servers (from serverA to serverB). I did a
OK, I know this has been discussed to death and people got greenlit answers
Disclaimer: first month of developing with rails, but I have read everything I could

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.