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

Line 3: Line 3:
 
           $("#about").hide();
 
           $("#about").hide();
 
            
 
            
           $(".left-but"),click(function() {
+
           $(".left-but").click(function() {
 
                 $("#front").fadeOut(function() {
 
                 $("#front").fadeOut(function() {
 
                         $("#about").fadeIn();
 
                         $("#about").fadeIn();

Revision as of 13:00, 5 October 2016

$(document).ready(function(){

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

});