I'm trying to make a control panel for my user where the page is never refreshed, but the different panels that hold relevant content are "refreshed" to reflect changes. I do this by either using:
.load() OR
.html() // for reading .get() and .post() results
However, when I try to load the new content, none of the JQuery I applied to relevant loaded classes and IDs are maintained. I can kind of fix this by including the JQuery on the loaded content, but that seems.. Wasteful, and hard to maintain.
Is there any way to automatically apply existing JQuery settings to loaded content?