У меня проблемы с заменой всплывающей подсказки браузера по умолчанию на qTip.Пока у меня есть:
$('[title]').each(function(){
var cont = $(this).attr('title');
if(cont != ''){
$(this).qtip( {
content: cont,
style: {
background: '#FFFFCC',
color: '#000000',
name: 'cream' ,
border: {
radius: 4,
color: '#FCC200'
},
textAlign:'center',
tip: {
corner: 'bottomLeft',
size: {
x: 20,
y: 8
}
}
},
position: {
corner: {
target: 'topRight',
tooltip: 'bottomLeft'
}
}
});
}
});
Но на самом деле в браузере я получаю:
Я действительно ценю вашу помощь.
Спасибо.