jQuery Effect - toggle( switch ) Method



Description

The toggle( switch ) method toggle displaying each of the set of matched elements based upon the passed parameter. If true parameter shows all elements, false hides all elements.

Syntax

Here is the simple syntax to use this method −

selector.toggle( switch );

Parameters

Here is the description of all the parameters used by this method −

  • switch − A switch to toggle the display on.

Example

Following is a simple example a simple showing the usage of this method −

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" 
         src = "https://www.tutorialspoint.com/jquery/jquery-3.6.0.js">
      </script>
		
      <script type = "text/javascript" language = "javascript">
         $(document).ready(function() {

            $("#false").click(function(){
               $(".target").toggle(false);
            });

            $("#true").click(function(){
               $(".target").toggle(true);
            });
				
         });
      </script>
		
      <style>
         p {background-color:#bca; width:250px; border:1px solid green;}
      </style>
   </head>
	
   <body>
      <p>Click on any of the following buttons:</p>
		
      <button id = "false"> False Switch </button>
      <button id = "true"> True Switch </button>

      <div class = "target">
         <img src = "../images/jquery.jpg" alt = "jQuery" />
      </div>
   </body>
</html>

This will produce following result −

jquery-effects.htm
Advertisements