Click to See Complete Forum and Search --> : [RESOLVED] Hreffing to _part_ of another webpage


rickduley
02-12-2010, 07:30 PM
In one page (Dynarray) I have the html declaration
<a name="MudMap">
pinpointing the position of a few paragraphs. I now want to move from another page straight to those specified paragraphs. I have tried:
<a href="./Dynarray.html/#MudMap"><i>'Mud Map'</i></a>
but that gets nowhere. I can't see anything in the W3C tutorial, but I think what I want can be done.

My question is, "How?"

Thanks

tracknut
02-12-2010, 09:16 PM
Change the link to: <a href="./Dynarray.html#MudMap"> (ie remove the extra slash)

And then in Dynarray.html, put: <a name="MudMap"></a> (ie add the </a> to what you have) at the point where you'd like the user to jump to.

Dave

rickduley
02-12-2010, 10:55 PM
Change the link to: <a href="./Dynarray.html#MudMap"> (ie remove the extra slash)

Thanks, Dave. That did it.