Adding an item after another item can fade out the wrong div and not the item you are adding.
For example
HTML:
This content does not change
This, too, does not change.
and content_update with
$settings = array(
'target' => '.someclass:last'
'method' => 'after'
);
will fade out the div with
This, too, does not change
Comments
Comment #1
jonskulski commentedHmm that comment came out strange. To be clear:
using the 'after' method will call jquery like
$('.div1').after('
");
The effect is that div1 is faded out and then both are faded 1.
The desired affect is that div2 is fadedIn and div1 never changes.