Skip to content

Instantly share code, notes, and snippets.

@alexcoleman
Created January 21, 2013 21:09
Show Gist options
  • Save alexcoleman/4589424 to your computer and use it in GitHub Desktop.
Save alexcoleman/4589424 to your computer and use it in GitHub Desktop.
Fade in fade out
$(document).ready(function() {
setTimeout(function() {
transition("col1")
}, 2000);
});
function transition (id) {
var id = '#' + id;
$(id + ':first-child').fadeOut('fast', function() {
$(id + ':last-child').fadeIn('fast', function() {
var last = $(id + ':last-child');
console.log(last);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment