Online computer courses, code, programming tutorial and sidebar information for monitoring Canadian S&P/TSX index. Build friendship and networking. Welcome to visit my blogs often!!! I also have two other sites: YouTube Channel and Google site.
Adsense
Popular Posts
- How to blend adsense inside your post?
- Formatting my post
- PHPWind-- A PHP forum script applcaition in China
- Promote your Forum/Blog/Website via major search Engines
- Install PHP ibm_db2 extension in Linux (redHat)
- Google Adsense forum and pin number
- Install PHPMailer 5.2.4 and use smtp gmail
- phpexcel toggle expand and hide column in EXCEL and summary
- Datatable export excel wraptext and newline
- PHP - Export Content to MS Word document
Tuesday, August 21, 2012
Paste from MS Word to Tinymce online editor
When we copy the text from Microsoft Word to Tinymce online editor, sometimes extra characters are added on. This is due to that "paste" plugin in Tinymce not initialized.
You can also add buttons: "paste as plain text" and "paste from word" in the Tinymce. But you do not have to add these buttons: "paste as plain text" and "paste from word" due to that adding "paste" plugin already fixes the bug.
Example: add "paste" plugin, "paste as plain text" and "paste from word" buttons in Tinymce initialization:
<script type="text/javascript">
tinymce.init({
mode : "textareas",
editor_selector : "mce-editor",
elements: "table,advhr,advimage,advlink,preview,print,contextmenu,paste",
theme: "advanced",
plugins: 'paste',
theme_advanced_buttons1: "fontselect, fontsizeselect,pastetext,pasteword",
theme_advanced_buttons2: "",
theme_advanced_buttons3: "",
theme_advanced_buttons4: "",
theme_advanced_toolbar_location: "top",
theme_advanced_toolbar_align: "left",
extended_valid_elements: "p,span[*],delete[*],insert[*]",
height: '400'
});
</script>
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment