hide functio with jquery
<script>
// We have to use hide function to hide the element as well.
$(‘#hide_elem’).click(function(){
$(‘#elem’).hide();
});
// This is the actual function which show how to call show function.
$(‘#show_elem’).click(function(){
$(‘#elem’).show();
});
</script>
<div id=”hide_elem”></div>
<div id=”show_elem”></div>
<div id=”elem”></div>