Container thành thùng 50 feet
$(document).ready(function (){
$(“.mucluc li a”).click(function (){
var h=$(this).attr(‘title’);
$(‘html, body’).animate({
scrollTop: $(h).offset().top
}, 2000);
return false;
});
});
$(document).ready(function (){
$(“.tt_ml a”).click(function (){
if($(this).hasClass( “ex” ))
{
$(this).removeClass(‘ex’);
$(this).addClass(‘an’);
$(this).html(‘Hiển thị’);
$(‘.mucluc’).hide();
}
else
{
$(this).removeClass(‘an’);
$(this).addClass(‘ex’);
$(this).html(‘Ẩn’);
$(‘.mucluc’).show();
}
return false;
});
});