Skip to content

Instantly share code, notes, and snippets.

@francisrupert
Created March 27, 2014 20:34
Show Gist options
  • Save francisrupert/9817976 to your computer and use it in GitHub Desktop.
Save francisrupert/9817976 to your computer and use it in GitHub Desktop.
A Pen by Francis Rupert.
<ul>
<li><a href="link.html">thing 1</a></li>
<li><a href="link.html">thing 2</a></li>
<li><a href="link.html">thing 3</a></li>
</ul>
$('body').on('click', 'a', function(event) {
alert('blah')
});
@import "compass";
body {
font-size: 18px
}
ul {
margin: 30px;
> li {
font-weight: bold;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment