JSFiddle - React, Tailwind, and code Playground
HTML
<link id="css" href="http://codeorigin.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" rel="stylesheet">
<div class="button" data-css="http://codeorigin.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">base</div>
<div class="button" data-css="http://codeorigin.jquery.com/ui/1.10.3/themes/dot-luv/jquery-ui.css">dot-luv</div>
<div class="button" data-css="http://codeorigin.jquery.com/ui/1.10.3/themes/sunny/jquery-ui.css">sunny</div>
<div class="button" data-css="http://codeorigin.jquery.com/ui/1.9.2/themes/trontastic/jquery-ui.css">trontastic</div>
<div class="button" data-css="http://codeorigin.jquery.com/ui/1.9.2/themes/excite-bike/jquery-ui.css">excite-bike</div>
JavaScript
$( ".button" ).button().click(function(){
$('#css').attr('href', $(this).data('css'));
});