
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Show and Hide Div on Mouse Click using jQuery
To show and hide div on mouse click using jQuery, use the toggle() method. On mouse click, the div is visible and on again clicking the div, it hides.
Example
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $('#show').click(function() { $('.menu').toggle("slide"); }); }); </script> </head> <body> <div id="show">Click to Show/ Hide div</div> <div class="menu" style="display: none;"> <ol> <li>India</li> <li>US</li> <li>UK</li> <li>Australia</li> </ol> </div> </body> </html>
Advertisements