The setup: I have a suckerdiv menu with links that call a function. Said function looks like:
function F(string) { var s = ''; var c = ''; ...
If you set the innerHTML of a <div> to innerHTML = '<a href="Something/C%23">C#</a><br />'; What seems to actually get 'rendered' is:
If you set the innerHTML of a <div> to innerHTML = '<a href="Something/C%23">C#</a><br />';
<div> <a href="Something/C#">C#</a><br /> </div>
I have a combo of javascript and my jsp that is adding some text and escaping it. I also have some javascrpt that will allow me to edit the text ...