I am running into an issue where if you put an obfuscated email address in the RadEditor it de-obfuscates it.
You put the following in:
<a href='mailto:John.Doe%40%65x%61%6Dple.com'>John.Doe@example.com</a>
It converts it to:
<a href="mailto:John.Doe%40%65x%61%6Dple.com">John.Doe@example.com</a>
How do you stop the control from doing this?
Thanks in advance.
I think it is the browser that does that (read the HTML entities and transform them): https://jsfiddle.net/x1wxpaps/ so I doubt you can stop it.
<div style="border: 2px solid red; width: 300px; height: 300px;" contentEditable="true" id="test">
<a href='mailto:John.Doe%40%65x%61%6Dple.com'>John.Doe@example.com</a>
</div>
<script>
alert(document.getElementById("test").innerHTML)
</script>