<script>
$(document).ready(function(){
$("#hide").click(function(){
$("p").hide();
});
$("#show").click(function(){
$("p").show();
});
});
</script>
</head>
<body>
<p>I am Pradeep !Click the hide button to hide my name.</p>
<button id="hide">Hide</button>
<button id="show">Show</button>