G
gaiduri
i have a question. the only thing i have not until this point done is
trace this in the source. here is what i would like to do; i wish to
perform a transform, however the following snippet is not properly
transformed:
<xsl:template match="/">
<script language="JavaScript" type="text/javascript">
<xsl:text>
<![CDATA[
function reset(elem1, elem2) {
elem1.value = "";
elem2.value = "";
}
the output of this stops after 'elem1.value=""', which is to say the
semicolon breaks the transform
the XML file includes the following:
<form ... onsubmit="return validateForm(event, this);">
i am processing this as;
once again, it breaks after the semicolon.
my question is, why?
trace this in the source. here is what i would like to do; i wish to
perform a transform, however the following snippet is not properly
transformed:
<xsl:template match="/">
<script language="JavaScript" type="text/javascript">
<xsl:text>
<![CDATA[
function reset(elem1, elem2) {
elem1.value = "";
elem2.value = "";
}
the output of this stops after 'elem1.value=""', which is to say the
semicolon breaks the transform
the XML file includes the following:
<form ... onsubmit="return validateForm(event, this);">
i am processing this as;
</xsl:attribute>
once again, it breaks after the semicolon.
my question is, why?