Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

46
votes
6answers
3k views

Is it recommended to use the <base> html tag?

I just found out about the <base> HTML tag. I have never seen it actually used anywhere before. Are there pitfalls to its use that means I should avoid it? The fact that I have never noticed ...
3
votes
4answers
2k views

Url Hash with Html Base Tag

window.location.hash When using a link for a javascript action, I usually do something like this: <a href="#">Link Text</a> That way, when someone clicks the link before the page loads ...
2
votes
2answers
738 views

Why does the base tag seem to be working in Opera and Chrome, but not in Firefox and IE?

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. ...
1
vote
2answers
299 views

Problem Getting Root URL in PHP

I'm having a problem getting the root URL with this PHP function I composed. I can get it, but I have to make exceptions per server, but I desire one consistent function instead. Can you show me how ...
1
vote
2answers
567 views

JSP for setting the BASE HTML Tag

I am running an application using jsp (gsp actually) under Tomcat. All URLs are absolute. That is, every href begins with a "/". For example: <a href="/mytool/role/index" ...
0
votes
1answer
159 views

Create an iframe and set its base tag with jquery correctly

* UPDATED * I'm attempting to set the base tag of a dynamically created iframe. Everything works if I set the base tag to the root (http://example.com/) and make the links in the src file include the ...
-1
votes
1answer
53 views

Combined file_get_contents and base tag

Here I have code for showing an external page within my page (similar to iframe but I grab the source): <?php $url = 'http://www.kupime.com/'; $data = file_get_contents($url); $data = ...