Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

qTip2 'tip' (arrow) not showing

I'm having trouble creating working qTips (the little arrow isn't showing). I have had these working in the past; the only thing I can think that has changed over time is the jQuery and qTip2 versions. I am using the following code to generate the tip and have set up a test case here using the "latest" jQuery (1.10.2) and qTip2 (2.1.1) and it doesn't work for me (firefox, chrome):

$(document).ready(function()
 {
     $('#testElement').qtip({
         content: 'readyTip'
     });
 });

http://jsfiddle.net/KgSqV/

Any ideas? Thanks

like image 210
valoukh Avatar asked Oct 02 '13 08:10

valoukh


2 Answers

I see that your css reference is not complete version (seems to be partial); try change your include reference in the following:

  • http://cdnjs.cloudflare.com/ajax/libs/qtip2/2.1.1/jquery.qtip.js
  • http://cdnjs.cloudflare.com/ajax/libs/qtip2/2.1.1/jquery.qtip.css

It's partial because is the js/css Basic features version (no additional styles or features) you must use the All features & styles.

Download page: http://qtip2.com/download

Demo: http://jsfiddle.net/IrvinDominin/Pu4A4/

like image 93
Irvin Dominin Avatar answered Nov 09 '22 15:11

Irvin Dominin


You should select the Speech bubble 'tips' option when you make a custom qTip2 build at its download page. If you do not select it your tooltips will be without arrows.

like image 38
Alexander Pravdin Avatar answered Nov 09 '22 16:11

Alexander Pravdin