Skip to content

Instantly share code, notes, and snippets.

@ichi
Created October 23, 2013 06:07
Show Gist options
  • Select an option

  • Save ichi/7113301 to your computer and use it in GitHub Desktop.

Select an option

Save ichi/7113301 to your computer and use it in GitHub Desktop.
selectタグで選んだらページ遷移
$ ->
$('select.jump').each ->
$select = $ @
# 初期選択状態
if current = $select.data 'current'
$select.val(current).trigger($.Event('select', current: current))
# changeしたら遷移
$select.on 'change', (ev)->
if href = ev.target.value
location.href = href
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment