Skip to content

Instantly share code, notes, and snippets.

Created June 7, 2010 19:06
Show Gist options
  • Save anonymous/429042 to your computer and use it in GitHub Desktop.
Save anonymous/429042 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
$(document).ready(function(){
$('#slide_one').delay(2000).fadeOut(500, function() {
$('#slide_two').fadeIn(500).delay(2000).fadeOut(500, function() {
$('#slide_three').fadeIn(500).delay(2000).fadeOut(500, function() {
$('#slide_one').fadeIn(500);
});
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment