I installed the ibrowser plugin. Do everything in here and here
Add javascript as below:
<script type="text/javascript">
tinyMCE.init({
theme : "advanced",
mode : "textareas",
plugins : "ibrowser",
theme_advanced_buttons3_add : "ibrowser"
});
function toggleEditor(id) {
if (!tinyMCE.get(id))
tinyMCE.execCommand("mceAddControl", false, id);
else
tinyMCE.execCommand("mceRemoveControl", false, id);
}
</script>
but nothing happens when the ibrowser icon is clicked. (already with "var ib = null;") Any idea to solve the problem? thanks in advance
jasmine
source
share