You are not logged in.
Pages: 1
Hi!
Has anyone been able to get Xinha to work with Jquery? As soon as I use any Jquery plugins on the same page, Xinha does not work, it just displays an empty textarea.
Thanks
Offline
Oops, I didn't notice your post. I will just repeat it here, in case you don't notice mine ![]()
To do this, remove the line from your config file that calls the initialization function. It should look like this:
window.onload = xinha_init;Then place within your jQuery initialization function, the code to start the editor. Like this:
$(document).ready(function() {
xinha_init();
});Offline
Pages: 1