I have one drop down list in my page, which contains two options. What i want is, when user select second value in drop down list, another page should load. that means how to switch page on clicking on of the drop down box values. for help i am putting my html code of drop down list.
<select id = "viewList" class="fl width160">
<option>Target</option>
<option>Source</option>
</select>
现在当用户点击源选项时, 其它js 页面应该打开。 以及我应该如何在. js 文件( Jquery) 中为此写入编码 。