Skip to content

Instantly share code, notes, and snippets.

@carlosrojaso
Created May 15, 2014 21:20
Show Gist options
  • Save carlosrojaso/f3e88d43f02596e8c34f to your computer and use it in GitHub Desktop.
Save carlosrojaso/f3e88d43f02596e8c34f to your computer and use it in GitHub Desktop.
JQ delay
// Hide all level 1 headings over half a second; then wait for 1.5 seconds
// and reveal all level 1 headings over 0.3 seconds
$( "h1" ).hide( 500 ).delay( 1500 ).show( 300 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment