Guest User

Untitled

a guest
Jul 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. // Ouvre le premier lien enfant de l'élément cible
  2. // Reproduit le comportement des navigateurs (ctrl ou cmd ou middleclick = nouvel onglet)
  3. $('.line-click').live('click', function(e){
  4. e.stopPropagation();
  5. href = $(this).children('a:first').attr('href');
  6. if (e.ctrlKey || e.metaKey || e.which == 2) {
  7. window.open(href);
  8. } else {
  9. window.location = href;
  10. }
  11. }).css('cursor', 'pointer');
Add Comment
Please, Sign In to add comment