http://www.barelyfitz.com/projects/tabber/
pero cuando uso
Código PHP:
<body onload="document.forms.nombreformulario.reset();">
Me parece que el onLoad ya esta en el .js esto es lo que encontre, alguna idea de como resetear el formulario sin traer problemas con el windows onload de este sistema TAB .js?
Código PHP:
function tabberAutomaticOnLoad(tabberArgs)
{
/* This function adds tabberAutomatic to the window.onload event,
so it will run after the document has finished loading.
*/
var oldOnLoad;
if (!tabberArgs) { tabberArgs = {}; }
/* Taken from: http://simon.incutio.com/archive/2004/05/26/addLoadEvent */
oldOnLoad = window.onload;
if (typeof window.onload != 'function') {
window.onload = function() {
tabberAutomatic(tabberArgs);
};
} else {
window.onload = function() {
oldOnLoad();
tabberAutomatic(tabberArgs);
};
}
}