I was trying to create
A.html : It contains links (Topic Headings)
B.html : It contains description of various topics separated in DIV's in a single html file
The size of B.html is very large...So when i link A.html with div id of B.html it loads entire B.html
Is there any way i can link both A and B so that link on A displays only linked DIV of B as a popup or in new tab...
This is code approach i was using
A.html
<html>
<body>
<div>
<a href="B.html#div1" rel="nofollow" target="_blank"/>Link to Topic in Page B</a>
</div>
</body>
B.html
<html>
<body>
<div id="div1">
Description of Topic A
</div>
<div id="div2">
Description of Topic B
</div>
<div id="div3">
Description of Topic C
</div>
<div id="div4">
Description of Topic D
</div>
</body>