Hi I have this problem Jquery UI tooltip does not support html content, I've tried every solutions but no one works out to me. In fact I tried with this code and didn't work either
<script>
$(document).ready(function () {
$('li.thumbnail a').tooltip({
content: function () {
return 'hola';
}
});
})
</script>
What could I do?