Response title
This is preview!
$.get( '/some/url', function ( items ) {
// Error: Uncaught TypeError: Failed to execute 'getComputedStyle' on 'Window': parameter 1 is not of type 'Element'.
$( items ).hide().prependTo( ".timeline" ).slideDown();
// This works fine, just doesn't slide
//$( items ).prependTo( ".timeline" );
} );
$timeline_class.append(items);
return $e.animate({scrollTop: $inner.outerHeight()}, 0, function() { .... });
Especially scrollTop!Don’t mix animate with scrolling.
© 2013 jQuery Foundation
Sponsored by and others.