Javascript examples for jQuery:Mouse Event
Click to add CSS class
<html> <head> <style> .open {//w w w . j a v a2s . co m color: blue; } </style> </head> <body> <div id="dropdown-nav"> Drop-down nav </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> <script> $("#dropdown-nav").click(function() { $(this).addClass("open"); }); </script> </body> </html>