Learn Prototype
Prototype Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
Prototype toggle() Method
This method toggles the visibility of element.
NOTE: Element.toggle cannot display elements hidden via CSS stylesheets. Note that this is not a Prototype limitation but a consequence of how the CSS display property works.
Syntax:
Return Value:
Example:
<html>
<head>
<title>Prototype examples</title>
<script type="text/javascript"
src="/javascript/prototype.js">
</script>
<script>
function toggleMsg(){
$('test').toggle();
}
</script>
</head>
<body>
<p>Click the button to see the result.</p>
<div id="test" style="display:inline;">
<p>This message will toggle when you click the button</p>
</div>
<br />
<input type="button" value="Click" onclick="toggleMsg();"/>
</body>
</html>
|
To understand it in better way you can Try it yourself.
|
|
|