Disable second dropdown menu before first is populated
Posted
by johnny-kessel
on Stack Overflow
See other posts from Stack Overflow
or by johnny-kessel
Published on 2010-05-11T23:13:06Z
Indexed on
2010/05/11
23:44 UTC
Read the original article
Hit count: 447
dropdownlist
|JavaScript
I need to grey out the second jump box (Select a Subcategory) before the first (Choose a Category) has a valid selection ..Here is the current code.. thanks guys
<script type="text/javascript">
\$j(document).ready(function() {
\$j('.subf_dropdown').html($j('.subf_dropdown').html());
});
function chooseForum(f, name)
{
\$j.ajax({
url: 'index.php?autocom=cats&root=' + f,
type: 'GET',
timeout: 100000,
error: function(){
alert('Oops something went wrong. Please try again');
},
success: function(xml){
\$j('.subf_dropdown').html("<optgroup label='Subcategories'> " + xml + " </optgroup>");
}
});
}
function newPostInForum(f)
{
if (f != "")
{
window.location = "http://www.xxx.co.za/?act=post&do=new_post&f=" + f;
}
}
</script>
<select name='f' class='f_dropdown' onchange="chooseForum(this.value, this); return false;">
<optgroup label="Choose a Category">
{$data}
</optgroup>
</select>
<br /><br />
<select name='subf' class='subf_dropdown' onchange="newPostInForum(this.value); return false;">
<optgroup label="Subcategories">
<option value="" selected="selected">Select a Subcategory</option>
</optgroup>
</select>
© Stack Overflow or respective owner