I want to hide DIV place holder

D

Darren

This works fine in netscape but IE won't do it. I have a div which contains
some links and a thumbnail. What's supposed to happen is when you click the
thumbnail the links disapear and the now invisible div is resized moving
everything below it. In IE it only resizes as small as the size of the dive
plus the size of the links.

heres an example

<div class="relatedLinks" id="posix">
<h3>Posix (Linux,UNIX,BSD)</h3>
<img id ="posixDropdownButton" src="downarrow.gif" width="8" height="8"
onClick="showHideDropDown('posixSection','posixDropdownButton','posixSection
','8px','112px')">
<div id="posixSection">
<a href="http://www.freshmeat.net" target="_top">Freshmeat</a>
<a href="http://www.redhat.com/" target="_top">RedHat Linux</a>
<a href="http://www.debian.org/" target="_top">Debian Linux</a>
<a href="http://www.novell.com/linux/suse/" target="_top">Suse
Linux</a>
<a href="http://www.slackware.com/" target="_top">Slackware
Linux</a>
<a href="http://www.freebsd.org/" target="_top">FreeBSD</a>
<a href="http://www.openbsd.org/" target="_top">OpenBSD</a>
</div>
</div>

the function for doiong the magic is

function showHideDropDown(tItem,tIcon,tParent,tMin,tMax)
{
var lItem=document.getElementById(tItem);
var lIcon=document.getElementById(tIcon);
var parentSection=document.getElementById(tParent);
if (lIcon.src.search("uparrow.gif")!=-1)
{
lIcon.src="downarrow.gif";
lItem.style.visibility="hidden";
parentSection.style.height=tMin;

}
else
{
lIcon.src="uparrow.gif";
lItem.style.visibility="visible";
parentSection.style.height=tMax;
}

}

It works terrific in netscape but it looks tacky in IE. Any ideas how to
make it work properly?

Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,578
Members
45,052
Latest member
LucyCarper

Latest Threads

Top