You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

26 lines
560 B

$(function () {
$('.imdbstars').qtip({
content: {
text: function(event, api) {
// Retrieve content from custom attribute of the $('.selector') elements.
return $(this).attr('qtip-content');
}
},
show: {
solo: true
},
position: {
viewport: $(window),
my: 'right center',
at: 'center left',
adjust: {
y: 0,
x: -2
}
},
style: {
classes: 'qtip-dark qtip-rounded qtip-shadow'
}
});
});