"быстрый переход" не работает в IE6

ayrat9

Новичок
"быстрый переход" не работает в IE6

http://www.pipe-welding.ru/news/

есть такая фича (слева под основным меню): быстрый переход к определенному бренду
реализуется яваскриптом
<select>
<option onClick="window.location='http://www.pipe-welding.ru/brands/roth.html'">roth</option>
<option onClick="window.location='http://www.pipe-welding.ru/brands/moth.html'">moth</option>
<option onClick="window.location='http://www.pipe-welding.ru/brands/soth.html'">soth</option>
</select>
но в мозилле работает, а в ИЕ не пашет.
помогите разобраться
 

ayrat9

Новичок
<option> не имеет обработчиков в MSIE

поэтому, надо вот так:
<select onchange='window.location=this.options[this.selectedIndex].value'>
<option value="/brands/roth.html">roth</option>
<option value="/brands/moth.html">moth</option>
<option value="/brands/soth.html">soth</option>
</select>
 
Сверху