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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:05:28+00:00 2026-05-28T03:05:28+00:00

I am loading some html via $.get() into a Jquery-dialog-popup. Upon clicking a link

  • 0

I am loading some html via $.get() into a Jquery-dialog-popup.

Upon clicking a link in the newly inserted html some function should be triggered.

This works with live() but NOT with on().

This works:

$(".remove").live("click", function () {
  // enter ok
}

This does not:

$("div").on("click", ".remove", function () {
// or $("#delete").on("click", ".remove", function () {
// or $(".remove").on("click", function () {

      // never enters...
});  

html:

<div id="delete">
  <a class="remove" href="#">link</a>
</div>

The on()-function works in case I am calling it directly from my main-template without loading the content into a dialog-window first via $.get.

  • 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-28T03:05:29+00:00Added an answer on May 28, 2026 at 3:05 am

    To pre-bind events for dynamic content, they have to be bound to a pre-existing element.

    So, if the <div id="delete"> is part of the dynamic content, then you shouldn’t use it to bind the event. You can, however, bind to the container that the dynamic content is loaded into.

    So, if the resulting HTML is:

    <div id="contents">
      <!-- start template -->
    
      <div id="delete">
        <a class="remove" href="#">link</a>
      </div>
    
      <!-- end template -->
    </div>
    

    Then, your JavaScript can be:

    $('#contents').on('click', 'div a.remove', function () {
      // ...
    });
    

    .live() uses document for this — an element that exists until reload or redirect — making the following lines equivalent:

    $("a.remove").live("click", function () { /* ... */ });
    $(document).on("click", "a.remove", function () { /* ... */ });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using jQuery 1.7.1, I am loading some HTML fragments via AJAX that are injected
I'm loading some HTML via Ajax with this format: <div id=div1> ... some content
In one of my HTML page dynamically loading some file field while clicking a
I am loading some template files into my application using require.js like so: define(function(require)
I am having some strange problems loading content from another XHTML page via jQuery.
I am using jQuery and I am loading dynamic HTML via PHP. My question
I'm loading some HTML from a file via AJAX, trying extra a block from
This is a bit special: I'm loading some HTML in string form into the
I'm loading in some HTML content like this: $('#scores').load('scores.php #scores'); Note that It is
Hi i am loading local html file after handling some javascript alerts on webchromeclient,

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.