Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

toggle heights of a div

Status
Not open for further replies.

Diggum1

Programmer
Oct 14, 2004
67
0
0
US
Anyone have or seen a script that performs the following...

I have one large image (about 500px height, though it could be anything up to 600px) contained within a <div>. On load, the div's height is set to 200px, so only the top portion of the image can be seen. When a user clicks a button (down arrow for example) it would reveal the entire image (setting the height to 100%). So when you click on the button, it would toggle between the two.

For example it would toggle between:

<div style="height:200px"></div>
<div style="height:100%"></div>

Any ideas,

Thanks
rick
 
You should be able to come up from this... Give your div an ID:

Code:
<div id="someId" style="height:200px;"></div>

and then use this:

Code:
document.getElementById('someId').style.height = '600px';

to set it.

Hope this helps,
Dan

Coedit Limited - Delivering standards compliant, accessible web solutions

[tt]Dan's Page [blue]@[/blue] Code Couch
[/tt]
 
Hi Dan, thanks for the response...was on vacation :)

I'm using the following, but can't figure out how to roll back the div to the initial height of 100px on the second click.


function showlayer(whichLayer)
{
document.getElementById(whichLayer).style.height = '100%';
}


<a href="#" onclick="showlayer('branson')">Show Image
</a></p>
<div style="height:100px; overflow:hidden" id="branson">
<img src="media/branson.jpg" />
</div>

Rick
 
just do something like this:

Code:
function showlayer(whichLayer)
{
    var d = document.getElementById(whichLayer);
    d.style.height = (d.style.height == '100px') ? '100%' : '100px';
}



*cLFlaVA
----------------------------
[tt]somebody set up us the bomb![bomb][/tt]

[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
Works great, thanks guys!
(Now I might be pushing it...)

What if I wanted "show image" to swap with "hide image" on click as well?
 
you could do this one of two ways.

1) the ugly way:
Code:
<a href="#" onclick="showlayer('branson'); showimage(); [red]return false;[/red]">

2) the pretty way:
Code:
function doThing(l, i) {
    showlayer(l);
    showimage(i);
    return false;
}



<a href="#" onclick="[red]return doThing('branson','other');[/red]">



*cLFlaVA
----------------------------
[tt]somebody set up us the bomb![bomb][/tt]

[URL unfurl="true"]http://www.coryarthus.com/[/url]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top