You are not logged in.
Pages: 1
Hi i'm using xinha 0.96 setHTML is working FF but not runnig IE7-8-9 error message is setHTML Can not get property value: The object is empty or undefined how can i solve this problem my code is
var _editor_url = document.location.href.replace(/index\.php.*/, '')
var _editor_lang = "en";
var xinha_plugins =
[
'Linker'
];
var xinha_editors =
[
'myTextArea'
];
function xinha_init()
{
if(!Xinha.loadPlugins(xinha_plugins, xinha_init)) return;
var xinha_config = new Xinha.Config();
xinha_editors = Xinha.makeEditors(xinha_editors, xinha_config, xinha_plugins);
Xinha.ie_version;
Xinha.startEditors(xinha_editors);
}
Xinha.addOnloadHandler(xinha_init);
xinha_editors.myTextArea.setHTML('');
Offline
Pages: 1