Using jQuery, I have implemented tooltip in my html. Now I want to style my tooltip.
How can I do that?
My JavaScript code for the tooltip is this:
$('.bootstrap-switch-handle-on').hover(function () {
$(this).css('cursor', 'pointer')
.attr('title', 'This is a hover text.');
}, function () {
$(this).css('cursor', 'auto');
});
Thanks