my javascript based redirect code works well on mozilla and chrome but in internet explorer it doesnt work. here code :
<option onclick="location.href='location'">GO</option>
EDIT : Error Detection: internet exploer doesn't support onclick event for option tag.
Solvation:
HTML:
<select onchange="redirecttooperator(this);">
<option value="location">GO 1</option>";
</select>
JS:
function redirecttooperator(select){
var operator = select.options[select.selectedIndex].value;
window.location.href = operator;
}