[xsl] Changing original html with XSL

Subject: [xsl] Changing original html with XSL
From: Robert G <nyjets3422@xxxxxxxxx>
Date: Thu, 21 May 2009 11:05:05 -0700 (PDT)
So I have a page that has initial HTML and then I have have xsl generate other html to put into the original html. I am able to get the generated html into the body tag, but I also wanted to added more code to the <head> </head> tag. Is there a way to insert code into the original head tag? For instance....

Original html file....

<html>
<head>
    JS and other stuff including title....
</head>

<body>
<div id="XSL ADDS SOME HERE"> </div>

</body>
</html>

And then .xsl file has something like

<xsl:output method="html"/>
<xsl:template match="/">
<head>
       Add more JS

</head

</xsl:template>

Is there a way to get the xsl files <head> data into the original head tag?

Current Thread