Hello! My name's , I'm using qTip at http:// and I think it's !

Note: Points will be deducted for bad grammar and spelling... and sentences that make no sense!

 

Imagemap plugin

Overview

The imagemap plugin adds additional positioning logic for <map> and <area> elements, allowing you to use qTips special corner positioning system with your imagemaps.

Back to the top

Usage

This particular plugin requires no additional user configuration. In order to utilise it, simply make sure you have it included in your qTip build and make sure that you point your jQuery selector to the <area> elements, NOT the <map> element! For example:

$('area').qtip({
	content: {
		text: 'Support for area maps with no extra configuration! Awesome.'
	},
	position: {
		my: 'top left',
		at: 'bottom right'
	}
});

Back to the top