I'm using qtip2 every thing is good but modal tip is not working in IE7:
$(document).ready(function () {
$('a[rel="master-modal-tip"]').each(function () {
$(this).qtip(
{
content: { text: $('#' + $(this).attr('ttid')), title: { text: '', button: true} },
position: { my: 'center', at: 'center', target: $(window) },
show: { event: 'click', modal: { on: true, blur: false} },
hide: false,
style: { classes: 'master-modal-tip' }
});
});
});
My JQuery version was 1.4 and i updated to last version (1.8.3), and modal issue now working fine in IE7.