Skip to content
Advertisement

Why does html loaded within a div with a script not call javascript?

I’m trying to create a collapsible menu I can edit independently of any page I load it on without using any iframes. I’m new to web design; I’m familiar with CSS and HTML, and am just learning JavaScript. I have barely any familiarity with jQuery or AJAX.

Here’s the script I’m using for a collapsible menu:

JavaScript
JavaScript
JavaScript

This works fine, but when I attempt to load the html into the div using AJAX:

JavaScript

where “menu.html” is simply this and nothing else:

JavaScript

The HTML loads in perfectly fine, but the collapsible menus are no longer responsive.

I’ve looked and found a couple questions similar to mine, but they didn’t seem to have answers that worked. If anyone could help me determine why this happens and how to fix it I would be deeply grateful.

Advertisement

Answer

You need to (re-)attach the event handlers after you have changed your HTML.

JavaScript
JavaScript
JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement