jQuery Tooltip
Set the theme property of the jqxTooltip. Author: http://jqwidgets.com
by mark edwards
HTML
<link rel="stylesheet" href="http://jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<link rel="stylesheet" href="http://jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<script src="http://jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<input type="button" style="margin: 50px;" id="jqxbutton" value="Hover over me to see the tooltip" />
JavaScript
$("#jqxbutton").jqxButton({
width: 300,
height: 30
// theme:'energyblue'
});
$("#jqxbutton").jqxTooltip({
position: 'top',
theme:'energyblue',
content: 'This is a jqxButton.',
width:200,
height:30
});