3
I created a Popover provided by Twitter-Bootstrap in this Popover a message is displayed formatted with tags HTML, but when I open the page the text that should be format in HTML is formatted as texto plano, how to make it display HTML formatted?
Code of the Popover
$("#pass_ca").popover({
    title:'A senha deve conter entre 8 e 16 caracteres, incluindo:',
    content:'<ul><li>Letras Maiusculas</li><li>Letras Minusculas</li><li>Numeros</li></ul>',
    trigger:'hover',
    placement:'right'
});
Tag that has the Popover
<input type="password" name="password" class="form-control" placeholder="Senha" id="pass_ca">