Skip to content

Instantly share code, notes, and snippets.

@coreyhaines
Created March 2, 2009 17:46
<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