For anyone interested – I figured how to get it to load on document.ready:
oldOnLoad = document.ready;
if (typeof document.ready != 'function') {
document.ready = function() {
tabberAutomatic(tabberArgs);
};
} else {
document.ready = function() {
oldOnLoad();
tabberAutomatic(tabberArgs);
};
}
It’d be great to get rid of those WP_Debug errors too ??