Skip to content

Instantly share code, notes, and snippets.

@atsea
Created August 7, 2015 17:44
Show Gist options
  • Save atsea/25de48dc40910ad74795 to your computer and use it in GitHub Desktop.
Save atsea/25de48dc40910ad74795 to your computer and use it in GitHub Desktop.
jQuery: delay addClass
// https://css-tricks.com/forums/topic/delay-addclass-with-jquery/
$('#ud_primary_logo_big').delay(145).queue(function(){
$('#ud_primary_logo_big').fadeToggle();
$('#ud_primary_logo_big').dequeue();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment