[jQuery] can anchor tag be used in jquery to define areas
What I mean is, in normal HTML if you have a link to go to the top of
the page you write
<a name="top" id="top"></a>
.....
..
<a href="test.html#top">go top</a>
When you type in your browser
http://localhost/lab2/class2.html#top
it takes you to the top of the page. This way you can also go to the
specific area in other pages too.
In jquery if you have such areas that are in a different page, how do
you trigger your click function to work? or can the anchor tag be
used ?
Thanks