home
links
tips

code
users
tools
tutorials
projects
web
help
design

mudabone
suletzki
trans48
nutrition reality

MarthaAttire!

js Show Hide Div


<script type="text/javascript">
function expandCollapse(elem)
{
    if (document.getElementById)
    {
        e = document.getElementById(elem);
        //i = document.getElementById(elem + "Image");
        if (e.style.display == "none" | e.style.display == null | e.style.display == "")
        {
                e.style.display = "block";
        //        i.src = "img/arrow_down.gif";
        }
        else if (e.style.display == "block")
        {
                e.style.display = "none";
        //        i.src = "img/arrow_right.gif";
               
        }
        else
        {
                //alert(e.style.display);
                e.style.display = "block";
        //        i.src = "img/arrow_down.gif";
        }
           
    }
}
</script>
<style type="text/css">
.dropDivs
{
display:none;
position:absolute;
}
</style>


<a href="#" onclick="javascript:expandCollapse('sample'); return false;">

<img src="img/arrow_down.gif" border="0">sample</a>

<div id="sample" class="dropDivs">asdf asdf asdf</div>


Last Modified 3/5/05 9:16 AM

Hide Tools