
Untitled
By: a guest on
May 27th, 2012 | syntax:
None | size: 0.54 KB | hits: 28 | expires: Never
SharePoint 2010 - How to replace the default rich text editor used for multi-line fields in lists with TinyMCE?
javascript:(function() {
h = document.getElementsByTagName("head")[0];
scriptT = document.createElement("script");
scriptT.src = "http://localhost/js/tiny_mce/tiny_mce.js";
scriptT.type = "text/javascript";
scriptT.onload = function(){
tinyMCE.init({mode: "textareas", theme:"advanced",
theme_advanced_toolbar_location:"top"});
};
h.appendChild(scriptT);
})()