c_shelswell Posted March 8, 2007 Share Posted March 8, 2007 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? Link to comment https://forums.phpfreaks.com/topic/41838-solved-simple-toggle-to-show-contents-of-div/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.