Skip to content

Instantly share code, notes, and snippets.

@ABrouwer
Created April 3, 2014 14:56
Show Gist options
  • Save ABrouwer/9955899 to your computer and use it in GitHub Desktop.
Save ABrouwer/9955899 to your computer and use it in GitHub Desktop.
Portfolio assignment 01
$(function(){
var headings = $("section.assignment > h1");
var paragraphs = $("p");
paragraphs.not(":first").hide();
headings.on("mouseover", function(){
var t = $(this);
var tPara = t.next();
if(tPara.is(":visible")){
return;
}
paragraphs.slideUp("normal");
tPara.slideDown("normal");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment