I’m a beginner and not remember all script in jquery.
what i want to do is to make my hide/show div have more simple script.
not like my script:
<div id="aaa">
<div id="bbb">
<div id="ccc">
<button id="bt1">
<button id="bt2">
<button id="bt3">
$("#bt1").click(function){
$("#aaa").show();
$("#bbb").hide();
$("#ccc").hide();
});
and so on...
thanks
that is if you want to show and hide element.