JSFiddle - React, Tailwind, and code Playground
by Hifni Nazeer
HTML
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<button class='btn btn-info btn-xs'>
Click Me
</button>
JavaScript
$(document).ready(function() {
$('button').click(function() {
//$(this).attr('name');
$(this).removeClass(function(index, className) {
return (className.match(/(^|\s)btn-\S+/g) || []).join(' ');
});
//$(this).addClass('btn-warning');
});
});