Line 8: | Line 8: | ||
}); | }); | ||
}); | }); | ||
+ | $(".close-jumbo").click(function() { | ||
+ | $("#about").fadeOut(function() { | ||
+ | $("#front").fadeIn(); | ||
+ | }); | ||
+ | }); | ||
+ | |||
}); | }); |
Revision as of 13:15, 5 October 2016
$(document).ready(function(){
$("#about").hide(); $(".left-but").click(function() { $("#front").fadeOut(function() { $("#about").fadeIn(); }); }); $(".close-jumbo").click(function() { $("#about").fadeOut(function() { $("#front").fadeIn(); }); });
});