Skip to content

Instantly share code, notes, and snippets.

@itsgreggreg
Created June 29, 2015 21:02
Show Gist options
  • Save itsgreggreg/336c0db69c3e0e9ac8d6 to your computer and use it in GitHub Desktop.
Save itsgreggreg/336c0db69c3e0e9ac8d6 to your computer and use it in GitHub Desktop.
JQuery Warmup
<!DOCTYPE html>
<html>
<head></head><body>
<div id="everything">
<h1>A heading!</h1>
<p>Here's some text!</p>
<p>Here's a second set of text!</p>
<div class="holder">
<ul>
<li>List Item 1</li>
<li>List Item 2</li>
<li>List Item 3</li>
</ul>
</div>
<div class="holder">
<ul>
<li id="changeMe">List Item 4</li>
<li>List Item 5</li>
<li>List Item 6</li>
</ul>
</div>
<div id="secret">We should hide this!</div>
</div>
<script>
var a = 4;
console.log(a)
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment