hello, fckeditor which is created like this
$oFCKeditor = new FCKeditor('annotation') ;
$oFCKeditor->BasePath = '/foerster.cz/fckeditor/' ; // '/fckeditor/' is the default value.
if (isset($news['annotation']))
$oFCKeditor->Value = $news['annotation'];
$oFCKeditor->ToolbarSet = "Basic";
$oFCKeditor->Create();
puts the following code in my page:
Object<div><input type="hidden" id="annotation" name="annotation" value="" style="display:none" /><input type="hidden" id="annotation___Config" value="" style="display:none" /><iframe id="annotation___Frame" src="/foerster.cz/fckeditor/editor/fckeditor.html?InstanceName=annotation&Toolbar=Basic" width="100%" height="200" frameborder="0" scrolling="no"></iframe></div>
<span class="victor"> </span>
</div>
i need to get rid of that "Object".
$oFCKeditor = new FCKeditor('annotation') ;
$oFCKeditor->BasePath = '/foerster.cz/fckeditor/' ; // '/fckeditor/' is the default value.
if (isset($news['annotation']))
$oFCKeditor->Value = $news['annotation'];
$oFCKeditor->ToolbarSet = "Basic";
$oFCKeditor->Create();
puts the following code in my page:
Object<div><input type="hidden" id="annotation" name="annotation" value="" style="display:none" /><input type="hidden" id="annotation___Config" value="" style="display:none" /><iframe id="annotation___Frame" src="/foerster.cz/fckeditor/editor/fckeditor.html?InstanceName=annotation&Toolbar=Basic" width="100%" height="200" frameborder="0" scrolling="no"></iframe></div>
<span class="victor"> </span>
</div>
i need to get rid of that "Object".
Re: trailing "object" in html
i'm a dumbass. hope this helps to someone with similar issue