Guest User

Untitled

a guest
Jul 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. $(".topic_outer").live({
  2. mouseenter:
  3. function () {
  4. $(this).find('a.close-button').show();
  5. },
  6. mouseleave:
  7. function () {
  8. $(this).find('a.close-button').hide();
  9. }
  10. }
  11. );
Add Comment
Please, Sign In to add comment