21st February, 16:52
Hello Craig,
i experiencing a big problem while using qTips in IE8.
It's working fine in FF but with IE8 browser completly hanging while i mouseover my img !
Here is a sample of my JS :
Do you have an idea ?
Thank you.
i experiencing a big problem while using qTips in IE8.
It's working fine in FF but with IE8 browser completly hanging while i mouseover my img !
Here is a sample of my JS :
JS Code
homeCore.createQtip = function(portletContent){
portletContent
.find('a')
.find('img')
.each(function(){
var id = $(this).attr('id');
var portletID = $(this).parents('.portlet-section').attr('id');
$(this).qtip({
content:{
text: 'Loading...',
ajax:{
url: 'main_ajax.asp',
type: 'get',
data: {
mode: 'hover_info',
portletID: portletID,
id: id
}
}
},
position: {
at: "right center",
my: "left center",
viewport: $(window)
},
style: {
classes: 'ui-tooltip-light ui-tooltip-shadow ui-tooltip-rounded'
}
})
})
}
Do you have an idea ?
Thank you.

