Skip to content

Instantly share code, notes, and snippets.

@intelliweb
Created August 7, 2013 15:15
Show Gist options
  • Save intelliweb/6174978 to your computer and use it in GitHub Desktop.
Save intelliweb/6174978 to your computer and use it in GitHub Desktop.
Delayed fade-in effect on element
<script type="text/javascript">
jQuery(function() {
jQuery('#element-ID').hide().delay(5000).fadeIn(2200);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment