Skip to content

Instantly share code, notes, and snippets.

@MPriess
Last active December 18, 2015 17:59
Show Gist options
  • Save MPriess/5822632 to your computer and use it in GitHub Desktop.
Save MPriess/5822632 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script src="http://raw.github.com/jzaefferer/jquery-validation/1.11.1/jquery.validate.js"></script>
<script src="http://raw.github.com/jzaefferer/jquery-validation/1.11.1/additional-methods.js"></script>
</head>
<body>
<form class="cmxform" id="commentForm" method="get" action="">
<p>
<label for="curl">Enter your ip adress</label>
<input id="curl" name="url" ipv4/>
</p>
</form>
<script>
$("#commentForm").validate();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment