Skip to content

Instantly share code, notes, and snippets.

@miketucker
Created November 15, 2011 11:11
Show Gist options
  • Save miketucker/1366828 to your computer and use it in GitHub Desktop.
Save miketucker/1366828 to your computer and use it in GitHub Desktop.
fade in
<script type="text/javascript">
$(document).ready(function () {
$("#logo").hide();
$("#logo").bind("load", function () { $(this).fadeIn(); });
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment