could you please tell me how to append data in xslt on button click using jquery? I tried like this
<button onclick='clickBtn()'>append</button>
JS function
function clickBtn(){
console.log('=====')
'<xsl:for-each select="//./body/name">
<xsl:if test='number(position()) >10'>
<li><xsl:value-of select="."/></li>
</xsl:if>
</xsl:for-each>'
}
here is my code http://xsltransform.net/jz1PuQ7/8
any update?