Cytat
w piątkowy, chłodny wieczór
Heh. Dobre
Nie mam jak sprawdzić, ale spróbuj:
Kod
$('#steps').stop().animate({
marginLeft: '-' + widths[current-1] + 'px'
},500,function(){
if(current == fieldsetCount)
validateSteps();
else
validateStep(prev);
$('#formElem').children(':nth-child('+ parseInt(current) +')').find(':input:first').focus();
});
e.preventDefault();
-->
Kod
$('#steps').stop().animate({
marginLeft: '-' + widths[current-1] + 'px'
},500,function(){
if(current == fieldsetCount)
validateSteps();
else {
if( validateStep(prev) == 1 )
$('#formElem').children(':nth-child('+ parseInt(current) +')').find(':input:first').focus();
}
});
e.preventDefault();
Nie mam pojęcia jak to będzie teraz działać