Search code examples
javascriptcsstinymcewysiwyg

Stripping styles from TinyMCE copy+paste?


is there a way to strip specific tags from coming into tiny MCE through a copy+paste from an external source (e.g. Word)? I'd like to prevent font-family and image tags from being copy+pasted over, but have no problem with font-size etc.

Thank you!


Solution

  • You can't really stop someone from pasting something, so I believe your best bet would be to filter out the unwanted tags by calling a function on form submit, or onchange of the tiny MCE textarea. Then you could use some regular expression replacement to get rid of the unwanted tags.

    EDIT: Actually there is a simple way. check the TinyMCE documentation.