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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T10:51:18+00:00 2026-06-13T10:51:18+00:00

I have a master page that loads content into a div based on which

  • 0

I have a master page that loads content into a div based on which link is clicked. I do this by using jQuery to add a click handler for certain anchors:

<div id="nav">
  <a href="somepage.html">
  ...
</div>

<div id="content"/>

<script type="text/javascript">
  $(document).ready(function() {
    $('#nav a, #footer a').click(function(e) {
      $('#content').load($(this).attr('href'));
      return false;
    });
  });
</script>

Some of the pages that get loaded into #content also have anchors for which I want to add a click handler (so the result of those clicks also go into #content). I’ve tried this:

$('#content a').click(function(e) {
  ...
});

but that doesn’t appear to work. Any ideas how I can set the click handler on anchors in those loaded pages?

  • 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-06-13T10:51:19+00:00Added an answer on June 13, 2026 at 10:51 am
    $(document).on('click', '#content a', function(e) {
      ...
    });
    

    Should work. When you add elements dynaically you need to use on() to bind them to an event. From the docs:

    Event handlers are bound only to the currently selected elements; they must exist on the page at the time your code makes the call to
    .on(). To ensure the elements are present and can be selected, perform
    event binding inside a document ready handler for elements that are in
    the HTML markup on the page. If new HTML is being injected into the
    page, select the elements and attach event handlers after the new HTML
    is placed into the page.

    Ideally you’d want a parent element closer in the DOM than document.

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

Sidebar

Related Questions

I have a master page that divides the main content into two areas. There
I have 2 master pages that are nested.this is main master page code for
I have a page that is based on my master page. the code below
I am using ASP.net c#. I have a master page and a content page.
I have a web site in asp.net that uses a master page. In this
I'd like to have a page that uses a child master page, fill in
I have a dropdown on my master page that lets the user switch language
I have a controller's action and view page that uses a master page. The
I have two pages that inherit from one master page, First.aspx or second.aspx. Navigation
I have made a web application that uses master page for Login & Logout

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.