In standard HTML, you can setup a set of anchors (<a>) to jump from one area to another...
Such as:
is there a way to do this via script (vb or java) so that the URL does not change...
Like, from:
www.mypage.com
to:
www.mypace.com#below
I would like to use the onclick command, in either an <img> tag or <a> tag with href="" and "...;return false;" so that the URL does not change, but the location/focus still jumps to another area...
Is this possible?
Thanks in Advance,
-Josh
Visit My Site
PROGRAMMER:
Red-eyed, mumbling mammal capable of conversing with inanimate objects.
Such as:
Code:
<a href="#below">See Below</a>
.
.
.
<a name="below"></a>
<p>Below...</p>
is there a way to do this via script (vb or java) so that the URL does not change...
Like, from:
www.mypage.com
to:
www.mypace.com#below
I would like to use the onclick command, in either an <img> tag or <a> tag with href="" and "...;return false;" so that the URL does not change, but the location/focus still jumps to another area...
Is this possible?
Thanks in Advance,
-Josh
Visit My Site
PROGRAMMER: