I need assistance with passing a lengthy XML string to a JavaScript function. Currently, the process involves using an XSL file to generate HTML code which includes a link that triggers the function like this.
<a href="javascript:myFunctionName('long xml string')">My Link</a>
While I am aware that using the post method can bypass Internet Explorer's character limit of 2083, I am unsure of the most effective approach to take.