I want html button "News"to show my div "New" which is hidden here's my code( it's not working right now):
<div id = "Buttons">
<button id="News">News</button><br>
<button id="Marks">Marks</button><br>
<button id="Averages">Averages</button><br>
<button id="Forum">Forum</button><br>
</div>
<div id="New">
<p id="Newer">Text</p>
</div>
#New{
display: none;
width: 500px;
height: 500px;
background-color: grey;
}
$(document).ready(function(){
$("#News").click(function() {
$("#New").show();
});
});