I have solved this problem already, but I wanted to share it, as I can see alot of people are dealing with it, and not enough solutions are available.
qTip Viewport adjustments weren't working for me.
First problem:
I had forgotten to include the library, when I first downloaded qTip:

Second problem:
I hadn't setup it up right:
The simplest way of getting this functionality can be seen here:
// Create the tooltips only when document ready
 $(document).ready(function()
 {
     // MAKE SURE YOUR SELECTOR MATCHES SOMETHING IN YOUR HTML!!!
     $('.qtippy').each(function() {
         $(this).qtip({
             position: {
                    my: 'left top',
                    at: 'right center',
                    viewport: $(window)
                },
         });
     });
     $(".qtippy").draggable();
 });
Or play with it in this jsFiddle: http://jsfiddle.net/nM7AA/
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With