What does this control do?
Shows an unobtrusive bubble that can be used to show an idea, a link or an error message. You can attach bubbles to elements, such as form inputs.
For an usage example check out the Meteora.Bubble demo.
How to use it
In order to use this control, paste this line of javascript right
at the beginning of your script tag:
You may then be able to invoke the Bubble this way:
// ELEMENT
// This is the element you want to associate with the bubble,
// it can be an element's ID or even a HTML object reference.
'attach-to',
// CONTENT
// This is the element you want to put inside the bubble,
// it can be an element's ID or even a HTML object reference.
'content-id',
// OPTIONS
{
'showEvent': 'mouseover',
'hideEvent': 'mouseout'
}
);