JSFiddle - React, Tailwind, and code Playground
by jrummell
HTML
<html>
<head>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/themes/redmond/jquery-ui.css"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script>
</head>
<body>
<div id="options">
<input type="radio" name="abc" id="abc1">
<label for="abc1">Radio 1</label>
<input type="radio" name="abc" id="abc2">
<label for="abc2">Radio 2</label>
<input type="radio" name="abc" id="abc3">
<label for="abc3">Radio 3</label>
</div>
<script type="text/javascript">
$(document).ready(function()
{
$("#options").buttonset();
});
</script>
</body>
</html>