Remove few HTML Tags while pasting the data from the clipboard in Tinymce -
i'm using tinymce 2.2 , need remove few html tags while pasting data in tinymce textarea.
i have data in format:
<div id="testid"> abcd </div>
on paste event, when use window.clipboarddata.getdata("text")
to data, "abcd"
, need whole data <div id="testid"> abcd </div>
where , how can whole htmldata in tinymce?
use
tinymce.get('your_textarea_id').getcontent();
ref : http://www.tinymce.com/wiki.php/api3:method.tinymce.editor.getcontent
Comments
Post a Comment