Skip to content

Instantly share code, notes, and snippets.

@fidian
Created September 11, 2012 14:33
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/3699151 to your computer and use it in GitHub Desktop.
Save fidian/3699151 to your computer and use it in GitHub Desktop.
pizelmatrix/uniform issue 164
<html><head><title>Test</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<link rel="stylesheet" href="https://raw.github.com/pixelmatrix/uniform/master/css/uniform.default.css" type="text/css" media="screen">
<script type="text/javascript" src="https://raw.github.com/pixelmatrix/uniform/master/jquery.uniform.js"></script>
<script type="text/javascript">
$(function () {
$('input').uniform();
});
</script>
</html>
<body>
<div id="uniform-private" class="radio">
<span class="checked">
<input type="radio" name="access" id="private" value="private" checked="checked" />
</span>
</div>
<label for="private">Private</legend>
<div id="uniform-public" class="radio">
<span class="">
<input type="radio" name="access" id="private" value="private" checked="checked" />
</span>
</div>
<label for="public">Public</legend>
</body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment