This is a task for the user. If there is a lot of code that the user would like to find and replace.One can perform this function with the visual format editor, but I have not been able find a way to do this with the HTML Source Editor in TinyMCE.A simple example would be to find and replace all of the h1 tags with h2 tags.See the screenshots attached. If I am still not clear, please let me know and I will try to clarify further. Thank you.
tinyMCE.init({ theme : "advanced", mode : "textareas", plugins : "searchreplace", theme_advanced_buttons3_add : "search,replace"});
You can add "Search & Replace" functionality into TinyMCE by below code: tinyMCE.init({ theme : "advanced", mode : "textareas", plugins : "searchreplace", theme_advanced_buttons3_add : "search,replace"}); For more detail go through the below link:http://wiki.moxiecode.com/index.php/TinyMCElugins/searchreplaceHTH
I keep seeing posts similar to the one above but no one says WHERE to add the tinyMCE.init.We are using SitePublisher and are trying to customize tinyMCE to simply not verify the html on close. we have the values just do not know how to apply them.