Line 13: | Line 13: | ||
}); | }); | ||
}); | }); | ||
+ | $(".right-but").click(function() { | ||
+ | $("#music").fadeIn(); | ||
+ | }); | ||
}); | }); |
Revision as of 09:52, 19 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(); }); }); $(".right-but").click(function() { $("#music").fadeIn(); });
});