Created
October 2, 2010 15:56
-
-
Save ericelliott/607750 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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