The Easiest Way to Save and Share Code Snippets on the web

TinyMCE Images Plugin Implementation (main things)

javascript | by: vikdiesel

last edit: Oct, 20th 2011 | jump to bottom

<!-- Powered with JustBoil Images (a TinyMCE Images Upload Plugin). More info at http://justboil.me/tinymce-images-plugin/ -->
<script type="text/javascript">
	tinyMCE.init({
		theme : "advanced",
		relative_urls : false,
		plugins : "jbimages",
		theme_advanced_buttons1 : "jbimages,|"
 
		// Other TinyMCE options
	});
</script>
3295 views