Possible Duplicate:
Handle URL anchor change event in js
Is it possible to have a javascript function run via an anchor tag.
E.g. if you went to... www.site.com/index.html#function1 ... Then function1 would run?
Is it possible to have a javascript function run via an anchor tag. E.g. if you went to... www.site.com/index.html#function1 ... Then function1 would run?
| |||
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
Put a an onload listener on the page and a click listener on the link that goes to the anchor. When fired, check window.location.href, something like:
| |||||||
feedback
|
|
You can't do that by simply including it in the anchor tag but you could use the hashtag ( | |||
|
feedback
|
|
You can't call the javascript like that, but if you control the other site, you can check the URL in the body Load event, then execute a script. | |||
|
feedback
|
| |||||||
feedback
|