It's standard html after the xsl has been processed...

In your xslt you have a match which would look something like...

<template match="/">
        <html>
                <head>
                        <script type="text/javascript" src="foo.js"/>
                </head>
                <body>
                        <!-- some content which could be generated
dynamically -->
                        <xsl:apply-templates/>
                </body>
        </html>
</template>

Everything within the <template></template> which isn't <xsl:xxx/> gets
written out verbose to the next thing in the process chain.  If this happens
to be to the client as html...

<html>
        <head>
                <script type="text/javascript" src="foo.js">
        </head>
        <body>
        </body>
</html>

This should be the result.

J.

> -----Original Message-----
> From: Ankush Anand [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, 04 September 2001 12:31 pm
> To: [EMAIL PROTECTED]
> Subject: RE: Front end Validations/mouse events trapping
> 
> 
> Could u please tell me how do we reference the .js file in dynamically
> generated page ?
> I'll appreciate if u can provide me sample code for the same.
> Thanks
> 
> -----Original Message-----
> From: Morrison, John [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, September 04, 2001 3:22 PM
> To: '[EMAIL PROTECTED]'
> Subject: RE: Front end Validations/mouse events trapping
> 
> 
> Then either put the javascript in a js file and reference it in your
> generated html or embed the javascript in your final xsl->html
> transformation.
> 
> > -----Original Message-----
> > From: Ankush Anand [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, 04 September 2001 10:31 am
> > To: [EMAIL PROTECTED]
> > Subject: RE: Front end Validations/mouse events trapping
> >
> >
> > Yes, i need to track the cursor on the browser for the corresponding
> > tooltips to display.
> >
> > -----Original Message-----
> > From: Morrison, John [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, September 04, 2001 1:05 PM
> > To: '[EMAIL PROTECTED]'
> > Subject: RE: Front end Validations/mouse events trapping
> >
> >
> > By 'front end' do you mean on the client side - ie in the browser?
> >
> > > -----Original Message-----
> > > From: Ankush Anand [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, 04 September 2001 8:28 am
> > > To: [EMAIL PROTECTED]
> > > Subject: RE: Front end Validations/mouse events trapping
> > >
> > >
> > > Its not in faq
> > >
> > > -----Original Message-----
> > > From: Ankush Anand [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, September 04, 2001 12:56 PM
> > > To: [EMAIL PROTECTED]
> > > Subject: Front end Validations/mouse events trapping
> > >
> > >
> > > How do we do Front end Validations/mouse events trapping on a
> > > dynamically
> > > generated cocoon page(XSP page) like javascript in jsp pages
> > >
> > > Thanks
> > >
> > >
> > >
> > 
> ---------------------------------------------------------------------
> > > Please check that your question has not already been 
> answered in the
> > > FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
> > >
> > > To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> > > For additional commands, e-mail: 
> <[EMAIL PROTECTED]>
> > >
> > >
> > >
> > >
> > 
> ---------------------------------------------------------------------
> > > Please check that your question has not already been 
> answered in the
> > > FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
> > >
> > > To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> > > For additional commands, e-mail: 
> <[EMAIL PROTECTED]>
> > >
> >
> >
> > ==============================================================
> > =========
> > Information in this email and any attachments are
> > confidential, and may
> > not be copied or used by anyone other than the addressee, nor
> > disclosed
> > to any third party without our permission.  There is no intention to
> > create any legally binding contract or other commitment
> > through the use
> > of this email.
> >
> > Experian Limited (registration number 653331).
> > Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF
> >
> > 
> ---------------------------------------------------------------------
> > Please check that your question has not already been answered in the
> > FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
> >
> > To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> > For additional commands, e-mail: <[EMAIL PROTECTED]>
> >
> >
> >
> > 
> ---------------------------------------------------------------------
> > Please check that your question has not already been answered in the
> > FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
> >
> > To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> > For additional commands, e-mail: <[EMAIL PROTECTED]>
> >
> 
> ---------------------------------------------------------------------
> Please check that your question has not already been answered in the
> FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
> 
> To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> For additional commands, e-mail: <[EMAIL PROTECTED]>
> 
> 
> 
> ---------------------------------------------------------------------
> Please check that your question has not already been answered in the
> FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>
> 
> To unsubscribe, e-mail: <[EMAIL PROTECTED]>
> For additional commands, e-mail: <[EMAIL PROTECTED]>
> 

---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

To unsubscribe, e-mail: <[EMAIL PROTECTED]>
For additional commands, e-mail: <[EMAIL PROTECTED]>

Reply via email to