fadeTo > fadeIn

fadeTo > fadeIn


I'm not that familiar with jQuery yet, so I wanted to pass this trough
you guys first.
Shouldn't this work with both a interval of 2 seconds:
jQuery("p").click(function() { jQuery(this).fadeTo(2000, 0.25, function
() { alert("2 seconds later => PASSED"); jQuery(this).fadeIn(2000,
function() { alert("should be 2 seconds later after last alert (4 secs
total)! => FAILED") }) }) });
gr J