expand

expand/by toggle

by seiketkm

HTML

<div id="search_condition">
  <span>検索条件</span>
  <div>
    <input >
  </div>
  <div>
    <input type="range">
  </div>
</div>
<button id="hoge">ぼたん</button>

JavaScript

$("#hoge").on("click",()=>{
  $("#search_condition").toggle();
})