Jump to content

fernando

Members
  • Posts

    2
  • Joined

  • Last visited

fernando's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. <xsl:variable name="LINK" value="link"><a href="{$LINK}" target="blank"><xsl:value-of select="name" /></a>
  2. The w3 school tutorial gives this javascript code <script type="text/javascript">// Load XML var xml = new ActiveXObject("Microsoft.XMLDOM")xml.async = falsexml.load("cdcatalog.xml")// Load XSLvar xsl = new ActiveXObject("Microsoft.XMLDOM")xsl.async = falsexsl.load("cdcatalog.xsl")// Transformdocument.write(xml.transformNode(xsl))</script> Like you can see this code only works if the client uses IE. So my question is: does exist a way to make it works on a firefox user client? It's important not to use a server(can't use asp like the tutorial does), I just wanna make this works on the client.
×
×
  • Create New...