qTip2. Я не могу добавить код "позиция"
Я ничего не знаю о JavaScript. Может кто-нибудь объяснить мне, что не так в этом коде (это синтаксическая ошибка)?
$(document).ready(function () {
$('.picture').qtip(
{
content: {
text: $(this).next('.tooltiptext')
}
position: {
my: 'bottom center', // tooltips tip at bottom center...
at: 'top center', // in relation to the button's top center...
target: $('.picture') // my target
}
});
});
Большое спасибо.
1 ответ
Я думаю, что вам не хватает ,
между значениями свойств вашего Qtip.
Пытаться:
$(document).ready(function () {
$('.picture').qtip({
content: {
text: $(this).next('.tooltiptext')
}, // <-- here
position: {
my: 'bottom center', // tooltips tip at bottom center...
at: 'top center', // in relation to the button's top center...
target: $('.picture') // my target
}
});
});