Guest User

Untitled

a guest
Jan 15th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. $(document).on('mouseenter touchend','[id*=mmlink]', function (e) {
  2. var $btn = $(this);
  3. var href = $btn.attr('href');
  4. var count = ($btn.data('click_count') || 0) + 1;
  5.  
  6. $btn.data('click_count', count);
  7. if (count == 1) {
  8. $btn.click(function(v) {
  9. v.preventDefault();
  10. });
  11. } else {
  12. document.location.href = href;
  13. }
  14. });
Add Comment
Please, Sign In to add comment