Skip to content

Instantly share code, notes, and snippets.

@fidian
Created January 15, 2013 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fidian/4539674 to your computer and use it in GitHub Desktop.
Save fidian/4539674 to your computer and use it in GitHub Desktop.
<html><head><title>Test</title>
<!-- jQuery 1.8.x -- using whatever is newest -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<!-- Using the latest Uniform from the develop branch -->
<link rel="stylesheet" href="https://raw.github.com/pixelmatrix/uniform/develop/themes/default/css/uniform.default.css" media="screen">
<script src="https://raw.github.com/pixelmatrix/uniform/develop/jquery.uniform.js"></script>
<script>
// Uniform every form element
$(function () {
21$('input, select').uniform();
$('form').on('reset', function () {
setTimeout($.uniform.update, 1);
});
});
</script>
</html>
<body>
<div>Browser: <script>document.write(navigator.userAgent)</script></div>
<!-- This form posts to a request inspector to ensure variables are being sent to the server -->
<form method="post" action="http://api.rumkin.com/watson/">
<input type="text" />
<select>
<option>first</option>
<option>second</option>
<option>third</option>
</select>
<button type="reset">reset</button>
</form>
</body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment