Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Would you mind if I ask, what is onblur="this.value ... Do you assign a string as a handler? Why there are quotes? – caligula Aug 25 '12 at 4:45
quote shouldn't be an issue – Jigar Joshi Aug 25 '12 at 4:53
@Nirali Joshi, for me your code works well. What is the exact problem? – caligula Aug 25 '12 at 4:57
@caligula for me it shows the same as hello <b>world</b>..it means it also saves hello <b>world</b> into database. – Nirali Joshi Aug 25 '12 at 5:11
@Nirali Joshi, in my FF it removes <b></b>. May be submit occurs before blur ? – caligula Aug 25 '12 at 5:16
show 10 more comments

1 Answer

up vote 1 down vote accepted

Try to test the order of priority of the events. Attach two handlers form.submit and textarea.blur and e.preventDefault inside submit. And use inside both of them console.log('submit') and console.log('blur') to see which one fires before. Cause the problem may be in the submit which fires before blur

share|improve this answer
yes u r right..but can u please tell me..why this happens?why it doesn't call onblur event of textarea? – Nirali Joshi Aug 25 '12 at 6:02
@Nirali Joshi, tell me what browser you are using? I tested it in FF, chrome, IE9 and blur fires before submit – caligula Aug 25 '12 at 6:06
try to check may be your form is submitted via js. For instance, $('textarea').blur(function(){$(this).parent().submit()}) – caligula Aug 25 '12 at 6:10
sorry...it is an browser issue.i told u chrome but it was my mistake..i m workin on remote desktop so there i am using safari.i forgot that. :P now i have tried in chrome.and it calls blur first. stupid safari..:) – Nirali Joshi Aug 25 '12 at 6:19
,thanx for helping me out.now i m accepting your answer. – Nirali Joshi Aug 25 '12 at 6:20
show 7 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.