Guest User

Untitled

a guest
Jan 18th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $("#catalog-filter").bind({
  2. click: function(e) {
  3. e = e||window.event;
  4. var offset1 = $("#catalog-filter").offset();
  5. console.log(offset1.top);
  6. console.log(e.pageY);
  7. var koordY = e.pageY - offset1.top - 10;
  8. $(".i-arrow").css({"top":koordY});
  9. },
  10. change: function() {
  11. $(".i-arrow").show().delay(5500).fadeOut();
  12. }
  13. });
Add Comment
Please, Sign In to add comment