Hii Я использую qTip 2, я хочу класс ui-tooltip-dark ui-tooltip-shadow
, но он не показывает этот класс. У меня есть этот код:
$('.selector').qtip({
content: {
text: function(api) {
// Retrieve content from custom attribute of the $('.selector') elements.
return $(this).attr('qtip-content');
}
},
title: {
text: function(api) {
// Retrieve content from ALT attribute of the $('.selector') element
return $(this).attr('alt');
}
},
style: {
classes: 'ui-tooltip-dark ui-tooltip-shadow';
}
});
Но когда я помещаю код, который находится на их сайте, он работает
Можете ли вы сказать мне, где я иду не так?
EDIT
<script type="text/javascript" class="example">
$(document).ready(function()
{
$('.selector').qtip({
content: {
text: function(api) {
// Retrieve content from custom attribute of the $('.selector') elements.
return $(this).attr('qtip-content');
}
},
title: {
text: function(api) {
// Retrieve content from ALT attribute of the $('.selector') element
return $(this).attr('alt');
}
},
style: {
classes: 'ui-tooltip-dark ui-tooltip-shadow';
}
});
});
</script>