select 시 특정 페이지 혹은 유알엘로 가기
function jumpto(targ, selObj, restore){
eval("window.open('"+selObj.options[selObj.selectedIndex].value+"', '', '')");
if (restore) selObj.selectedIndex=0;
}
html
<select onChange="jumpto('parent', this, 0)">
<option selected>:::: 자주가는 사이트 ::::</option>
<option value="http://www.onstory.fun" >온스토리</option>
<option value="http://www.naver.com" >네이버</option>
</select>