Possible SP26 Issue with textarea html fields

Several places where we have written customized code have problems with textarea fields when there are multiple tabs after it. The tabs beyond the textarea fields are not displaying and some of the textarea fields appear with code in them. This isn't happening with all customized textarea fields though.

Has anyone else seen this issue with SP26?

Comments

  • Yes. Make sure your text areas are properly ended with an end tag not a self closing tag.


    <textarea ... /> BAD


    <textarea ... ></textarea> GOOD

  • That fixed it. Thank you so much!

Categories