I have a page which will be have a large number of links on it. Each link will display an “overlay” and a “pop up window (div)” using JavaScript and CSS.
I’ve done this before and have no issue with this, however I want to load the content of this pop up div dynamically when clicked. Some links may open member information others will be various forms on my site. I don’t want to load the content at the time the page loads as the page maybe open for hours and the content will likely change.
How can I do this?
The only thing I can think of is to send an ajax request when the link is clicked to show the page in the div’s inner HTML as well as modifying the css through javascript/jquery
Any other ideas?