Skip to content

Instantly share code, notes, and snippets.

@garethrees
Created July 18, 2012 22:43
Show Gist options
  • Select an option

  • Save garethrees/3139455 to your computer and use it in GitHub Desktop.

Select an option

Save garethrees/3139455 to your computer and use it in GitHub Desktop.
/*
* do some jQuery magic on load
*/
$(document).ready(function() {
function showHiddenParagraphs() {
$("p.hidden").fadeIn(500);
}
setTimeout(showHiddenParagraphs, 1000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment