Add tooltips to an element.

tippy(element, content, ...)

Arguments

element

Shiny, or htmltools element, or character string.

content

Content of the tooltip.

...

Any other options from the official documentation.

See also

Examples

library(shiny) tippy("Hover me!", content = "Hi, I'm the tooltip!") tippy(h3("Hello"), content = "World")