30th November, 14:58
I saw some threads asking how to stop the 'fly-by' animation of the tooltip when using 1.0, so here's the solution. I don't think Craig will implement it anyways since 1.0 is going to the grave, but maybe he can sticky this thread? 
Download jquery.qtip-1.0.js, and on line 1187:
// Animate and reset animated status on animation end
self.elements.tooltip.stop().animate(position, 200, 'swing', function () {
self.status.animated = false;
});
Simply change the 200 to 0. Then you can 'reminify' the code on this website: http://jscompress.com/
Use the 'Packer (Dean Edwards)' option to achieve the best result (around 22Kb)

Download jquery.qtip-1.0.js, and on line 1187:
// Animate and reset animated status on animation end
self.elements.tooltip.stop().animate(position, 200, 'swing', function () {
self.status.animated = false;
});
Simply change the 200 to 0. Then you can 'reminify' the code on this website: http://jscompress.com/
Use the 'Packer (Dean Edwards)' option to achieve the best result (around 22Kb)
