This repository has been archived by the owner on Jun 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 469
IE6
Craga89 edited this page Mar 14, 2013
·
6 revisions
This plugin is an IE6 compatibility layer that wraps around the IE6 BGIFrame jquery plugin by Brandon Aaron, and also simulates the max-width
and min-width
CSS properties applied to the tooltip (if present).
This particular plugin requires no additional user configuration. In order to utilise it, simply make sure it's included in your qTip2 build.
Note that this is a compatability plugin for IE6 only, and will have no effect in any other browser.
In IE6 only, the created BGIframe element is available through the API's elements object:
$('.selector').qtip({
content: {
text: 'IE6 bgiframe plugin'
},
events: {
render: function(event, api) {
// Grab the BGIFrame element
var elem = api.elements.bgiframe;
}
}
});