Load contents in 2 different div
I have a page "work" with 2 div:
<div id="intro"></div>
<div id="images"></div>
Now I have lot of introductions and images and I would like to store these in different pages and when on the menu I click on specific link it load in the same page the contents of the relative page, Introduction into id#intro and images into id#imag开发者_运维技巧es.
I don't know how to do that...
Thanks!
You can use jQuery load method to load content dynamically into your divs.
精彩评论