Is it possible to link from one .html page to an anchor on another page, and have javascript or something make that anchor highlighted?
a link on page1.html...
<li><a href="page2.html#part3">This is the third part.</a></li>
When I click the link above, I want it to go to the anchor link "#part3" and HIGHLIGHT THIS LINK, so that users will know which link they should click.
the content on page2.html#part3...
<li><a name="part3" href="info.html">Read more about part 3.</a></li>
a link on page1.html...
When I click the link above, I want it to go to the anchor link "#part3" and HIGHLIGHT THIS LINK, so that users will know which link they should click.
the content on page2.html#part3...
here's the java i was using...
Here's my example...
To the page with the #anchor target...
http://www.jollyfarmer.com/developing/index.html
To the page that is the target...
http://www.jollyfarmer.com/developing/greenhousecatalogs.html
http://reference.sitepoint.com/css/pseudoclass-target
to get it to work in IE:
http://www.htmldog.com/articles/suckerfish/target/