LoginSignup
0
1

More than 3 years have passed since last update.

jqueryで表示非表示を切り替える小技

Last updated at Posted at 2019-07-17

自分用にメモ

まずSCSSを設定

.target-area {
  display: none;
  &.open {
    display: block;
  }
}

jquery でonclick時などに以下を走らせれば表示非表示が簡単に切り替わる

$('.target-area').toggleClass("open")
0
1
1

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
0
1