2
I am using the jQuery tooltip and need to display a message formatted with html, for example
$(function(){
$("input:file").tooltip();
});
<link href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<input type='file' title="<b>m</b>ensagem <i>formatada</i>">
I wish he understood html
Your answer is correct for the jquery tooltip, but by a certain coincidence I was using the bootstrap tooltip and didn’t notice.. now that I’ve found a solution, it would be interesting to add your answer
$("input:file").tooltip({
 html : true
 });
– Silvio Andorinha
Melhor rsrs..
– Silvio Andorinha