Advertisement
Guest User

Untitled

a guest
Jan 17th, 2013
815
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. $(document).on({
  2. mouseenter: function(e) {
  3. $(this).css('background-position','0px top');
  4. },
  5. mouseleave: function(e) {
  6. $(this).css('background-position','-41px top');
  7. }
  8. }, '.panel:not(.active)');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement