Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I thought about if it would be possible to determine which link is hovered. Like if I hover http://google.com/ a div should pop up (display:block) and show the google logo and if I hover stackoverflow.com the stackoverflow logo and so on...

Can this be achieved with a:hover or do I have to put every link in to it's own div?

Thanks, really much!

share|improve this question
what have you tried? – mdmullinax Dec 20 '12 at 15:34
1  
$(this) is available within the hover event. But you knew that from reading the tutorials. – Jay Blanchard Dec 20 '12 at 15:34
Can you provide a mockup of what you're looking for? It may be possible to do this on the :before or :after psuedo elements. – cimmanon Dec 20 '12 at 15:35

closed as not a real question by mdmullinax, Rory McCrossan, bensiu, Ram kiran, pickles Dec 21 '12 at 4:04

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 4 down vote accepted

You can do this by assigning a listener to all a elements.

$('a').hover(function() {
  var href = $(this).attr('href');
  if (href == 'http://stackoverflow.com') {
    // do your thing
  }
});

If you don't want to do exact url matching, you can add special data attributes to your a elements and check them instead.

<a data-rel = 'stackover' href="http://stackoverflow.com">SO</a>

$('a').hover(function() {
   var rel = $(this).data('rel');
   if (rel == 'stackover') {
     // do your thing
   }
});
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.