Javascript examples for jQuery Method and Property:mouseenter
Jquery mouseenter and fadeTo
<html> <head> <script src="https://code.jquery.com/jquery-1.9.1.min.js"></script> </head> //from w w w . j a v a 2 s. c o m <body> <div id="header"> AAA </div> <script> $(document).ready(function(){ $("#header").mouseenter(function(){ $("#header").fadeTo('fast', 1); }); $("#header").mouseleave(function(){ $("#header").fadeTo('fast', 0.1); }); }); </script> </body> </html>