Hola, estoy usanto qTip un plugin de jQuery y el problema que estoy teniendo es que no puedo usar HTML porque en el tip me lo muestra como texto plano, ejemplo:
Esto es un ejemplo.<br />Esto sería otra línea del ejemplo.
Dejo el código:
Código:
$("#qtip").qtip({
content: {
text: "Esto es un ejemplo.<br />Esto sería otra línea del ejemplo."
},
style: {
name: 'blue',
tip: {
corner: 'topLeft',
size: {
x: 12, // Be careful that the x and y values refer to coordinates on screen, not height or width.
y : 24 // Depending on which corner your tooltip is at, x and y could mean either height or width!
}
},
textAlign: 'justify',
width: 320,
border: {
width: 7,
radius: 5
}
},
position: {
adjust: {
screen: true // Keep the tooltip on-screen at all times
}
}
});