Difference between revisions of "Template:Sheffield/scripts/front"

(Created page with "$(document).ready(function(){ $("#about").hide(); });")
 
Line 2: Line 2:
 
        
 
        
 
           $("#about").hide();
 
           $("#about").hide();
 +
         
 +
          $(".left-but"),click(function() {
 +
                $("#front").fadeOut(function() {
 +
                        $("#about").fadeIn();
 +
                      });
 +
            });
 
});
 
});

Revision as of 12:58, 5 October 2016

$(document).ready(function(){

         $("#about").hide();
         
         $(".left-but"),click(function() {
                $("#front").fadeOut(function() {
                        $("#about").fadeIn();
                      });
            });

});