You are not logged in.
Pages: 1
FYI, I received a message asking how to do this, so I thought I would share it with everybody. Xinha is able to work fine with jQuery, but it needs to start the editor after all the JavaScript is loaded.
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