When a div is clicked, I want different div to appear.
Thus, when \'#music\' is clicked, I want \'#musicinfo\' to appear.
Here is the css:
This is simple way to Display Div using:-
$("#musicinfo").show(); //or $("#musicinfo").css({'display':'block'}); //or $("#musicinfo").toggle("slow"); //or $("#musicinfo").fadeToggle(); //or