jQuery Tutorial
jQuery UI
jQuery References
jQuery Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
jQuery Effect - show() Method
Description:
The show( ) method simply shows each of the set of matched elements if they are hidden. There is another form of this method which controls the speed of the animation.
Syntax:
Here is the simple syntax to use this method:
Parameters:
Here is the description of all the parameters used by this method:
Example:
Following is a simple example a simple showing the usage of this method:
<html>
<head>
<title>the title</title>
<script type="text/javascript"
src="/jquery/jquery-1.3.2.min.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$("#show").click(function () {
$(".mydiv").show();
});
$("#hide").click(function () {
$(".mydiv").hide();
});
});
</script>
<style>
.mydiv{ margin:10px;padding:12px;
border:2px solid #666;
width:100px;
height:100px;
}
</style>
</head>
<body>
<div class="mydiv">
This is SQUAR
</div>
<input id="hide" type="button" value="Hide" />
<input id="show" type="button" value="Show" />
</body>
</html>
|
To understand it in better way you can Try it yourself.
|
|
|