Created
September 11, 2012 14:33
-
-
Save fidian/3699151 to your computer and use it in GitHub Desktop.
pizelmatrix/uniform issue 164
This file contains hidden or 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
<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