Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
5k views

Setting nodeValue of text node in Javascript when string contains html entities

When I set a value of a text node with node.nodeValue="string with &#xxxx; sort of characters" ampersand gets escaped. Is there an easy way to do this?
0
votes
2answers
411 views

XSLT: How to pass a node value to a custom xsl:function?

I have a simple function that I want to pass the value of a node to. <xsl:function name="f:getdatetimetype" as="xs:string"> <xsl:param name="code" as="xs:int"/> ...