Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. $(function () {
  2. $('.hide').fadeOut("fast");
  3.  
  4. $( ".fourth" ).hover(
  5. function() {
  6. $( this ).find('.hide').fadeIn("slow"); ;
  7. }, function() {
  8. $( this ).find('.hide').fadeOut("slow");
  9. }
  10.  
  11. );
  12. <div class="fourth">
  13. <div class="products">
  14. <h4 class="hide"><a href="#">Laern More</a></h4>
  15. </div>
  16. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement