<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#hide").click(function(){
$("#content").hide();
});
$("#show").click(function(){
$("#content").show();
});
});
</script>
</head>
<body>
<div id="content">Welcome to Wild Coders, the online community for coders who are passionate about coding and love coding. </div>
<button id="hide">Hide</button>
<button id="show">Show</button>
No comments:
Post a Comment