Jump to content

[SOLVED] Simple toggle to show contents of div


c_shelswell

Recommended Posts

Hi i'm stuck on a, what i imagine is a fairly simple problem.

 

I'm trying to show the contents of a div when a user changes a select box.

 

i've got:

 

<script language='javascript'>
function show()
{
var style2 = document.getElementById('fm-optional').style;
style2.display = style2.display? "":"block";
}
</script>

<div class='fm-optional'>
content etc etc etc
</div>

<select name='country' class='mySelectCountry' onchange='show();'>

 

the div is set to display none in the css.

 

however this doesn't seem to be doing anything can't quite figure it out. Any ideas?? Thanks very much

 

--fenway: solved how?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.