JSFiddle - React, Tailwind, and code Playground
by TJ VanToll
HTML
<script src="http://code.jquery.com/ui/1.9.0/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.0/themes/base/jquery-ui.css">
<a title="background">Link 1</a>
<br />
<a class="withColor">Normal Link</a>
<br />
<a title="background-color">Link2</a>
CSS
.withoutColor{
background: red;
}
.withColor{
background-color: red;
background-image: none;
}
JavaScript
$('a:first').tooltip({tooltipClass:'withoutColor'});
$('a:last').tooltip({tooltipClass:'withColor'});