I'm trying to insert an HTML <base> tag immediately after the opening <head> tag of a page using dom. I've tried using appendChild which just inserts it before the </head> which is no good.

Code im using:

$head = $dom->getElementsByTagName('head')->item(0);
$base = $dom->createElement('base');
$base->setAttribute('href', $url);
$head->parentNode->insertBefore($base, $head);

This inserts the <base> tag before the <head>, which is still no good!

Any ideas? Beer for the correct answer!

link|improve this question

50% accept rate
parentNode is necessary? i assume heads' parentnode is html. – fabrik Jul 5 '10 at 14:08
What kind of beer? – Pekka Jul 5 '10 at 14:13
feedback

1 Answer

up vote 1 down vote accepted
$head = $dom->getElementsByTagName('head')->item(0);
$base = $dom->createElement('base');
$base->setAttribute('href',$url);

if ($head->hasChildNodes()) {
    $head->insertBefore($base,$head->firstChild);
} else {
    $head->appendChild($base);
}

If the <head> element already has children, it inserts the <base> element before 's first child. If <head> has no children, it just appends it to <head>

link|improve this answer
BEER FOR YOU!!! – DrShamoon Jul 5 '10 at 14:35
1  
glug glug glug – Mailslut Jul 5 '10 at 14:39
feedback

Your Answer

 
or
required, but never shown

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