JQuery JavaScript Tutorial

< html>
  
    
    
    
        $(document).ready(function(){
             $("div").toggle(
                  function () {
                     $(this).css({"color":"blue"});
                  },
                  function () {
                     $(this).css({"color":"red"});
                  },
                  function () {
                     $(this).css({"color":"yellow"});
                  }
             );
        });
    
  
  
    
       
header 1