Then I added the parameter to the wymeditor initalisation code, so the source in the example 01-basic.html now looks like this:
- Code: Select all
jQuery(function() {
jQuery('.wymeditor').wymeditor({
preInitDialog: function(wym, wdw) {
alert('will init the dialog now');
}
});
});
If I click on Insert-image or -table button the preInitDialog function works fine in all browsers exept IE (6,7,8). There is no error, just no alert. I wondered why this is not working... anyone any idea?