Guest User

Untitled

a guest
Nov 16th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. $('.sharethis-body .keypress-click').each(function () {
  2. $(this).keypress(function (e) {
  3. var key = e.which;
  4. if (key == 13) // the enter key code
  5. {
  6. $(this).click();
  7. console.log("click");
  8. return false;
  9. }
  10. return true;
  11. });
  12. });
  13.  
  14. <div class="sharethis-body">
  15. <div class="sthoverbuttons-label"><span>Share</span></div>
  16. <span tabindex="0" class='st_facebook_large keypress-click' displaytext='Facebook' aria-label='Facebook'></span>
  17. <span tabindex="0" class='st_twitter_large keypress-click' displaytext='Tweet' aria-label='Twitter'></span>
  18. <span tabindex="0" class='st_googleplus_large keypress-click' displaytext='Google +' aria-label='Google Plus'></span>
  19. <span tabindex="0" class='st_linkedin_large keypress-click' displaytext='LinkedIn' aria-label='LinkedIn'></span>
  20. <span tabindex="0" class='st_email_large keypress-click' displaytext='Email' aria-label='Email'></span>
  21. </div>
Add Comment
Please, Sign In to add comment