for me it is solved this way and works correctly in IE8 and IE7
just remove or comment out the position property that forms the touch of the tip.
here is my Qtip constructor.
<script type="text/javascript">
$.fn.qtip.styles.mystyle = {
background: '#A2D959',
color: 'black',
textAlign: 'right', direction: 'rtl',
name: 'dark'
, tip: 'topLeft'
}
$(document).ready(function () {
$('#tt21,#tt22,#tt4,#ttMobile,#ImgEmail,.ttFaname').qtip({ style: { name: 'mystyle'} });
});
</script>
source
share