Hi,
my intent is to switch content around by the dropdown box,
here is the code:
...
<div style="display:none" id="DD">...</div>
...
and have a js which check for this id, and make necessary changes,here is the code:
if (document.formname.selectionname.value== "DD"){
document.getElementById('DD').style.display ='inline';
document.getElementById('EE').style.display = 'none';
}
ok, it does not work with IE, but it work with FireFox...
FF rocks....-___-'
my intent is to switch content around by the dropdown box,
here is the code:
...
<div style="display:none" id="DD">...</div>
...
and have a js which check for this id, and make necessary changes,here is the code:
if (document.formname.selectionname.value== "DD"){
document.getElementById('DD').style.display ='inline';
document.getElementById('EE').style.display = 'none';
}
ok, it does not work with IE, but it work with FireFox...
FF rocks....-___-'