I want to prevent writing html tags in nicEditor.
<div id="sample">
<script type="text/javascript" src="http://js.nicedit.com/nicEdit-latest.js"></script> <script type="text/javascript">
//<![CDATA[
bkLib.onDomLoaded(function() { nicEditors.allTextAreas() });
//]]>
</script>
<textarea onblur="this.value = this.value.replace(/<\/?[^>]+>/gi, '')" name="process" style="width: 300px; height: 100px;" id="process">
hello <b>world</b>
</textarea>
</div>
I have tried above regex..but it doesn't work..
I am using the same regex onblur="this.value = this.value.replace(/<\/?[^>]+>/gi, '')" for simple textbox.and it works fine.
I also want to know that, is it the proper way to prevent html tags from user inputs for security purpose?
onblur="this.value ...Do you assign a string as a handler? Why there are quotes? – caligula Aug 25 '12 at 4:45<b></b>. May besubmitoccurs beforeblur? – caligula Aug 25 '12 at 5:16