vote up 0 vote down star

I have a site where I use the base tag. All the links in the site are relative, and I set an absolute href so that all the links should be aimed at the right target. And it works in Opera and Chrome. All links in the menu works, all images and style-sheets are found. But in Firefox and IE they are not. And I don't get it!

I can browse it without problems in Opera and Chrome. While in FireFox and IE, it is all messed up when I get to one of the pages that are in a sub-directory. Have I misunderstood something about how that tag is supposed to be used? Or?

This is the site: http://sites.geekjuggler.net/vipersystem/

flag

2 Answers

vote up 0 vote down check

The base tag only supports absolute paths in Firefox, it seems.

http://forums.mozillazine.org/viewtopic.php?f=38&t=366823&start=0&st=0&sk=t&sd=a
http://www.w3.org/TR/REC-html40/struct/links.html#edef-BASE

Ergo,

<base href = "http://sites.geekjuggler.net/vipersystem/" />

should work.

link|flag
Thank you! That looks much better. Stupid FF and IE... – Svish Nov 2 at 20:45
Seriously. Viva la Opera. – Stefan Kendall Nov 2 at 20:46
And when I think about it, I really think it is kinda rude to not consider /vipersystem/ an absolute link. As far as I know, it isn't relative at least... – Svish Nov 2 at 20:49
vote up 0 vote down

From the HTML 4.01 specification: Base Element

href = uri [CT] This attribute specifies an absolute URI that acts as the base URI for resolving relative URIs.

However the HTML 5 draft drops the requirement that the Base element be an absolute URI, so I guess Opera and Chrome have already implemented that relaxation.

link|flag
Or just never had a correct implementation :) – Tomas Markauskas Nov 2 at 21:36

Your Answer

Get an OpenID
or

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