Hi guys,
I am using the folloeing dropdown list code on my site and have found that it doesnt work properly in IE. Sometimes it works… Sometimes it doesnt ‘jump to page’
<script type="text/javascript">
function jump(obj){
if(obj.selectedIndex != 0){
window.location=obj.options[obj.selectedIndex].value;
}else{
alert('Please Select!!!');
}
}
</script>
<form name="form1">
<select name="jump1" OnChange="location.href=form1.jump1.options[selectedIndex].value">
<option value="aaaa">somthing</option>
Can anyone please help?