You can use the same drop down DIV for more than 1 anchor link on the page. The only thing that needs to be unique are the IDs of the anchor link themselves. For example, the below is two anchor links that both use the same drop down DIV as its content:
Code:
<p>Demo #1: <a href="http://www.dynamicdrive.com" id="searchlink" rel="subcontent">Search DD</a></p>
<p>Demo #1: <a href="http://www.dynamicdrive.com" id="searchlink2" rel="subcontent">Search DD</a></p>
<div id="subcontent" style=....>
"
"
</div>
dropdowncontent.init("searchlink", "right-bottom", 500, "mouseover")
dropdowncontent.init("searchlink2", "right-bottom", 500, "mouseover")
Bookmarks