jQuery:toggle() | ホームページ制作の39デザイン

ホームページ制作の39デザイン

中小企業・個人事業主様を徹底応援

toggleを忘れないためのメモ

・javascript
<script>
$(document).ready(function(){
    $("button").click(function () {
      $("#box").toggle("slow");
    });
});
</script>

・css
<style type="text/css">
#box{
 width:300px;
 height:300px;
 background:#cccccc;
}
</style>

・html
<button>toggle</button>
<div id="box"></div>