Line 1: | Line 1: | ||
$(document).ready(function(){ | $(document).ready(function(){ | ||
− | $("#about,#music").hide(); | + | $("#about,#music,#results").hide(); |
$(".left-but").click(function() { | $(".left-but").click(function() { | ||
Line 20: | Line 20: | ||
$(".close-music").click(function() { | $(".close-music").click(function() { | ||
$("#music").fadeOut(); | $("#music").fadeOut(); | ||
− | + | ||
}); | }); | ||
}); | }); |
Revision as of 19:36, 2 December 2016
$(document).ready(function(){
$("#about,#music,#results").hide(); $(".left-but").click(function() { $("#front").fadeOut(function() { $("#about").fadeIn(); }); }); $(".close-jumbo").click(function() { $("#about").fadeOut(function() { $("#front").fadeIn(); }); });
$(".right-but").click(function() { $("#music").fadeIn(); });
$(".close-music").click(function() { $("#music").fadeOut(); });
});