Copyright © tutorialspoint.com
The toggle() method toggles displaying each of the set of matched elements.
Here is the simple syntax to use this method:
selector.toggle( ); |
Here is the description of all the parameters used by this method:
NA:
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() { $("#toggle").click(function(){ $(".target").toggle( ); }); }); </script> <style> p { background-color:#bca; width:200px; border:1px solid green; } </style> </head> <body> <p>Click on the following button:</p> <button id="toggle"> Toggle </button> <div class="target"> <img src="/images/jquery.jpg" alt="jQuery" /> </div> </body> </html> |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com