cara menggunakan javascript untuk menyembunyikan konten dan menampilkan melalui tautan

$(document).ready(function() {
    $('li').click(function () {
        $('.content:visible').hide(); // hides the visible content before 
        $('.content').eq($(this).index()).show(); // shows the corresponding content
    });
    });
Poised Pigeon