At this URL
boiseresturants.com/mexican/baja-fresh-mexican-grill.html

I have an anchor link that looks like

<a href="#takemehere">his is a test</a>

Now I expected the above link to appear as
boiseresturants.com/mexican/baja-fresh-mexican-grill.html#takemehere

But it points to
boiseresturants.com/#takemehere

Why is this happening? I have never seen something like this before.

link|improve this question
1  
Formatting help. – alex Sep 6 '11 at 3:20
Select the code in your question and click the "code" (looks like a double Quotes) to properly display the code. Or put the code in backticks (the key usually above the tab key). – Diff.Thinkr Sep 6 '11 at 3:22
feedback

2 Answers

up vote 0 down vote accepted

The reason it's jumping to the home page is because the page has <base> set in the <head>:

<base href="http://www.boiseresturants.com/" />

Either drop that or be more specific with your anchors like so:

<a href="/mexican/baja-fresh-mexican-grill.html#takemehere">Take Me Here</a>
link|improve this answer
feedback

The base element is causing that unexpected behaviour...

<base href="http://www.boiseresturants.com/" />

You'll need to use the full path.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.