Click here to Skip to main content
15,899,025 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi, I am using qtip to display a tooltip wich is working fine in IE 8 but not working in IE 11. Can anyone suggest any solution?

$('#tabularview img[title]').qtip({
                id: 'title', 
                content: {
                    text: function (api) {
                        var originalContent = $(this).attr('title');
                        if (originalContent.length > 0) {
                            $('.selector') elements.
                            return nl2br(originalContent, true);
                        }
                    }
                },
                position: {
                    my: 'bottom right',
                    at: 'top right',
                    viewport: $('#RMTabularView'),
                    effect: false
                },
                show: { effect: false, solo: false },
                hide: { effect: false },
                style: {
                    classes: 'Comments Top', tip: false
                }
            });


What I have tried:

I have checked IE is in compatible mode. Please give some suggestion. Thanks
Posted
Comments
ZurdoDev 13-May-16 7:51am    
Upgrade your version of qtip.
Richa Ankit 13-May-16 8:03am    
ie: Qtip2?
ZurdoDev 13-May-16 8:05am    
Yes, I had to do this myself recently. Our app is now full support for new browsers and html5. So, for me, I had to upgrade jquery, jqueryUI, and other plugins, including qtip.

Or, you can debug what is wrong and try to fix it yourself if you have the unminified version of qtip.
Richa Ankit 13-May-16 8:31am    
Thanks a lot Ryan. I am using minified version, So I have to change the version alone. Thanks once again.
ZurdoDev 13-May-16 8:36am    
Sure. Refer to the documentation because they did change quite a few things about how it is used.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900