Skip to content

Instantly share code, notes, and snippets.

@dylanbathurst
Last active December 11, 2015 10:48
Show Gist options
  • Save dylanbathurst/4589066 to your computer and use it in GitHub Desktop.
Save dylanbathurst/4589066 to your computer and use it in GitHub Desktop.
var id = 'div1';
function swapper (id) {
$(id).firstChild().fadeOut('slow', function () {
$(id).lastChild().fadeIn('slow', function () {
var last = $(id).lasChild();
$(id).prepend(last);
swapper('div2');
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment