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

I'm loading some HTML via Ajax with this format: <div id=div1> ... some content
This is a bit special: I'm loading some HTML in string form into the
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 have an ajax call in jQuery loading some elements into a div. The
I'm loading HTML from an AJAX request, and some img tags in it. I
I am loading some text dynamically into a div, but have the problem that
I am currently loading HTMl content via AJAX. I have code for things on
I'm loading some content (NOT THE HTML headers or anything, just HTML formatted content
I am using ASP.NET MVC and jQuery and I am loading a PartialView via

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.