i'm trying to get a menu to slide out instead of just pop outi've tried the following and it doesn't really work at all
function toggle(targetId) { target = document.getElementById(targetId); if (target.style.display == "none"){ target.style.display=""; for(i=0;i<=200;i++) { setTimeout("slide(i, target)",100) } } else { for(i=200;i>=0;i--) { setTimeout("slide(i, target)",100) } target.style.display="none"; }}function slide(incr, target) { target.style.height=incr+'px';}
7/15/2006 12:30:39 AM
7/15/2006 12:53:46 PM
that shits just clicks and whistles
7/15/2006 1:04:38 PM
STAY OUT OF TECH TALK DWEEDLE
7/15/2006 7:08:16 PM
http://www.dynamicdrive.com/dynamicindex1/index.html
7/15/2006 7:36:47 PM
sweet, what i was looking for is in therenow to butcher it horribly to make it work the way i want it to
7/15/2006 9:18:39 PM
heh...been there, do that on a regular basis
7/15/2006 10:51:12 PM
^^isn't that exactly what JS is in the first place
7/15/2006 11:07:10 PM