I created a Popover
provided by Twitter-Bootstrap
in this Popover
a message formatted with HTML
tags is displayed, however when I open the page the text that should be formatted in HTML
is formatted as texto plano
how do I display it formatted in HTML?
Popover Code
$("#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 popover
<input type="password" name="password" class="form-control" placeholder="Senha" id="pass_ca">