If I set my base url like so:

<base href='http://example.com' />

And then put a link to an anchor on the page http://example.com/test.php:

<a href='#top'></a>

How do I make sure the anchor stays on the same page and goes to the link http://example.com/test.php#top as opposed to going to http://example.com/#top because it uses the base url?

Essentially, is there any way to specify that this particular link must be relative and not use the base?

link|improve this question

feedback

1 Answer

You could either do:

<base href='http://example.com' />
<a href='test.php#top'></a>

or

<base href='http://example.com/test.php' />
<a href='#top'></a>

I don't think there is any magic way that the client is going to know what file to use as part of the base if you don't define it.

link|improve this answer
I understood I could do any of these BUT the second one does not solve my problem because I want the base url to be example.com for all the other urls on the page. (Otherwise there wouldn't be any point of using a base in the first place.) – Chaim Chaikin Nov 16 '11 at 14:35
Essentially, is there any way to specify that this particular link must be relative and not use the base? – Chaim Chaikin Nov 16 '11 at 14:37
feedback

Your Answer

 
or
required, but never shown

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