OK let's say I have a jQuery function... it's an AJAX Post... well after success I do this
$("#title"+id).html(Z);
and Z is var Z=$("#"+X+" textarea.editAnswer").val();
.
However if I type in the textarea something like <script>alert('Test');</script>
and then press save... it will save it and the test alert will popup. So... how do I fix this?