Tips

A lite jQuery tips plugin.

View the Project on GitHub aisin/Tips

1. Normal with black skin

This is a testing paragraph. While hovering on this paragraph, you can see the tips content appears above it. However, if the above is not enough space for the tips content, it will appear at the bottom of the element.

Black skin (default)

$('.para-blk').tips({
	msg: 'This is the tips content.'
});

2. Normal with white skin

This is a testing paragraph. While hovering on this paragraph, you can see the tips content appears above it. However, if the above is not enough space for the tips content, it will appear at the bottom of the element.

White skin (default)

$('.para-wht').tips({
	skin: 'white',
	msg : 'This is the tips content.'
});