View Single Post
  #1 (permalink)  
Old 04-16-2008, 03:02 AM
Kolyn_Kryw's Avatar   
Kolyn_Kryw Kolyn_Kryw is offline
Newbie
 
Join Date: Apr 2008
Posts: 6
Credits: 0
Rep Power: 0
Kolyn_Kryw is on a distinguished road
Send a message via ICQ to Kolyn_Kryw Send a message via Skype™ to Kolyn_Kryw
Exclamation Collapse Outside the frame

Hi, I have a script which collapses the menu, inside its frame.

HTML Code:
<script language="JavaScript">

function collapseMenu(sectionID) {

var obj = document.getElementById(sectionID);

if (obj.className == "Collapse") {

obj.className="DeCollapse";

}

else {

obj.className="Collapse";

}

}

</script>

Is it possible to have it expand and collapse outside the frame?

For example similar to the onMouseover drop-down menu. (Example: Web hosting, reseller hosting and an affiliate program)

I'm no good with flash so I'd like to keep to javascript and PHP.

Last edited by Jaan; 04-26-2008 at 03:32 AM. Reason: Use tags when you're posting your codes!
Reply With Quote

Sponsored Links