Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. $(document).ready(function(){
  2. $('div').mouseenter(function){
  3. $('div').fadeTo('fast', 0.5);
  4. });
  5. });
  6.  
  7. $(document).ready(function(){
  8. $('').mouseleave(function){
  9. $('div').fadeTo('fast', 1);
  10. });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement