Javascript examples for jQuery Method and Property:mouseleave
Mouse event to fade
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js"></script> <script type="text/javascript"> $(window).load(function(){/* w w w .jav a 2 s .c o m*/ $(document).ready(function() { $('#zom').mouseenter(function() { $('#zom').fadeTo('fast', 0.25); }); $('#zom').mouseleave(function() { $('#zom').fadeTo('fast', 1); }); }); }); </script> </head> <body> <div id="zom"> this is a test </div> </body> </html>