You left out the initialization (from the demo - goes right before the closing </body> tag):
Code:
<script type="text/javascript">
//Call dropdowncontent.init("anchorID", "positionString", glideduration, "revealBehavior") at the end of the page:
dropdowncontent.init("searchlink", "right-bottom", 500, "mouseover")
dropdowncontent.init("contentlink", "left-top", 300, "click")
</script>
Your first test would init on just:
Code:
<script type="text/javascript">
//Call dropdowncontent.init("anchorID", "positionString", glideduration, "revealBehavior") at the end of the page:
dropdowncontent.init("searchlink", "right-bottom", 500, "mouseover")
</script>
But your second test uses the same id as the first test, so some browsers will give up and not init either. Go back to the demo page and follow the instructions for Step 1 and Step 2 exactly as written.
Once you do that, it will work. Then you can begin customizing it.
Bookmarks