I have an anchor link:

<a name="mylink" class="myclass"></a>

I send a link to an e-mail of my user with a link:

http://preloaders.net/en/social_bookmarks/#mylink

How do I identify if the link has been clicked with jQuery/Javascript?

link|improve this question

50% accept rate
feedback

1 Answer

up vote 2 down vote accepted

You can do this with pure JavaScript:

if (window.location.hash == '#mylink') ...
link|improve this answer
I did not know this was possible. Cool question; useful answer. +1 for all :) – macek Dec 4 '11 at 12:34
Thanks a lot Cito! Just before refreshed this page found the answer too, by exploding the full url by "#" :) But your solution is "cleaner" than mine :). Thanks – Timur Gafforov Dec 4 '11 at 12:39
feedback

Your Answer

 
or
required, but never shown

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