Skip to content

Instantly share code, notes, and snippets.

@robeastham
Created July 31, 2009 13:24
Show Gist options
  • Save robeastham/159221 to your computer and use it in GitHub Desktop.
Save robeastham/159221 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('#on').click(function() {
$('#hud').show(250);
});
$('#off').click(function() {
$('#hud').hide(250);
});
$('.toggle_errors').click(function() {
$('#errors').slideToggle(250);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment