$(document).ready(function(){
$('#bio > div').hide();//div ที่อยู่ ใน bio จะ hide เครื่องหมาย > หมายถึงตัวลูกทุกตัว
$('#bio > div:first').show();//show อันแรก ถ้าต้องการตัวที่สองของ div ให้ใส่เป็น div:eq(1)ไปแทน div:first

$('#bio h3').click(function(){
$(this).next().animate(
{'height:':'toggle'},'slow','easeOutBounce'
);
});
});

By admin

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.