Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created October 2, 2010 15:56
Show Gist options
  • Save ericelliott/607750 to your computer and use it in GitHub Desktop.
Save ericelliott/607750 to your computer and use it in GitHub Desktop.
<head>
<style>
.black {
background-color:#111111;
color:silver;
}
</style>
</head>
<body>
<form id="black">
<label for="name">Your Name:*</label>
<input id="name" name="name" type="text" placeholder="Bob" title="Your name is required." required />
</form>
<script>
$(document).ready(function () {
$('#black').h5Validate({
errorClass:'black'
});
});
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment