Skip to content

Instantly share code, notes, and snippets.

@brlinton
Created January 5, 2013 04:16
Show Gist options
  • Save brlinton/4459723 to your computer and use it in GitHub Desktop.
Save brlinton/4459723 to your computer and use it in GitHub Desktop.
jQuery Brogramming
<html>
<head>
</head>
<body>
<a href="#">Click me, bro</a>
<script src="http://ajax.aspnetcdn.com/ajax/jquery/jquery-1.8.0.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$('a').click(function(){
alert("You clicked me, bro!");
});
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment