Sunday, December 25, 2011

Hide an element when you click on it


Example :  Hide a paragraph when you click on it

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title> hide function  </title>
<script type="text/javascript" src="../jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("p").click(function(){
$(this).hide();
});
});
</script>

</head>

<body style="width:800px; margin:0 auto">
<center>
<h3> Hide a paragraph when you click on it.</h3>
<p> Click upon me, I will hide.</p>
</center>


</body>
</html>

No comments:

Post a Comment