Skip to content

Instantly share code, notes, and snippets.

@coreyhaines
Created March 2, 2009 17:46
Show Gist options
  • Save coreyhaines/72878 to your computer and use it in GitHub Desktop.
Save coreyhaines/72878 to your computer and use it in GitHub Desktop.
<script type='text/javascript'>
function assertEquals(expected, actual) {
if(expected == actual) {
$('#pass_div').show();
}else{
$('#failure_div').show();
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment