Berlangganan Artikel Via Email

Enter your email address:

Showing posts with label JavaScript. Show all posts
Showing posts with label JavaScript. Show all posts

Saturday, February 11, 2012

Test Ganti background

Friday, February 10, 2012

Ganti Background Blogspot

















Monday, November 7, 2011

Java Script According

<script type="text/javascript">
$(document).ready(function(){
   
//Set default open/close settings
$('.acc_container').hide(); //Hide/close all containers
$('.acc_trigger:first').addClass('active').next().show(); //Add "active" class to first trigger, then show/open the immediate next container

//On Click
$('.acc_trigger').click(function(){
    if( $(this).next().is(':hidden') ) { //If immediate next container is closed...
        $('.acc_trigger').removeClass('active').next().slideUp(); //Remove all .acc_trigger classes and slide up the immediate next container
        $(this).toggleClass('active').next().slideDown(); //Add .acc_trigger class to clicked trigger and slide down the immediate next container
    }
    return false; //Prevent the browser jump to the link anchor
});

});
</script>