I just launched the qtip2 plugin for jQuery and cannot make the style work according to their examples. Maybe I don’t understand something?
This is their example for downloading 6 themes available by default, but nothing changes if I use cream, red, dark, light, blue or green. I just keep getting the default cream theme. Should they also be available and used as qtip 1x?
$("jqueryselector").qtip({
content: 'Dark themes are all the rage!',
style: {
name: 'dark'
}
});
In jQuery, my code is as follows:
$(function(){
$('a['title']).qtip({style:{name:'red',tip:true}}); // picked up from the getting started page
});
source
share