LoginSignup
1
1

More than 5 years have passed since last update.

プルダウンの少し特殊な操作

Posted at

selectbox選択時にmodalウィンドウを表示するという
少し意味不明な仕様を実装しょうとして詰まった時のメモ。

javascript
$("#test select").click(function() {
  $(this).trigger("blur");

  # modal開く処理
});

clickのみのイベントハンドラのみだとoption選択値が残ってしまい、
モーダルよりも前面に表示されてしまう。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1