My boss just asked me to re-create an old web part. It’s basically image tiles that, upon being clicked, dynamically load another page into an iframe on that main page. Something like this:
images___________
[][]|
[][]|
[][]| iframe
|
|
She doesn’t want me to use iFrames. However, the dynamic content must be stored in a separate page and have a separate URL. How can I take separate page content with a URL and load it into my main page without an iFrame?
You can use jquery.load(); to perform that. You can try it out and if you run into problems update your question with code and issue and I/somebody can help you.
The basic idea of
load()looks like this