Hi
I've a small problem about the code of this script.
I moved this part
HTML 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>
inside dropdowncontent.js, so:
HTML Code:
window.onload = function(){
dropdowncontent.init("searchlink", "left-bottom", 500, "click");
};
It works very well in any page, but doesn't works in the pages which contain other scripts. What i can do to solve that?
I would to leave just the html tags in the body and put any javascript in external files. Is it possible?
Thanks in advance
Bookmarks