Skip to content
This repository has been archived by the owner on Jun 14, 2020. It is now read-only.
Craga89 edited this page Mar 14, 2013 · 6 revisions

IE6 Add support for Internet Explorer 6

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).

Usage

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.

Elements

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;
		}
	}
});