端くれプログラマの備忘録 jQuery [jQuery] セレクトボックスで選択したページにジャンプさせる

[jQuery] セレクトボックスで選択したページにジャンプさせる

<script type="text/javascript">
    $(document).ready(function(){
        $('#site').bind('change', function() {
            window.location.href = $('#site').val();
        });
});
</script>

<select id="site">
<option value="http://google.com/">Google</option>
<option value="http://twitter.com/">Twitter</option>
<option value="http://facebook.com/">Facebook</option>
</select>

参考サイト

jQueryを使って、selectタグで選択された値によってリンク先を変更する方法 : おばけノート
http://obakenote.com/js/1189/