toggleを忘れないためのメモ
・javascript
<script>
・javascript
<script>
$(document).ready(function(){
$("button").click(function () {
$("#box").toggle("slow");
});
});
</script>
・css
・html
<button>toggle</button>
<div id="box"></div>
</script>
・css
<style type="text/css">
#box{
width:300px;
height:300px;
background:#cccccc;
}
</style>
・html
<button>toggle</button>
<div id="box"></div>