Guest User

Untitled

a guest
Apr 26th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. $(".item_cont a").hover(function() {
  2. $(this).closest(".item_cont").children("hr").fadeIn(100);
  3. },
  4. function() {
  5. $(this).closest(".item_cont").children("hr").fadeOut(100);
  6. }
  7. );
Add Comment
Please, Sign In to add comment