use_tippy_funcs: Use tippy

Description Usage Arguments Functions See Also Examples

Description

Dynamically use tippy.

Usage

1
2
3
4
5

Arguments

target

Target element.

...

Any option from the official documentation.

class

Class of elements to apply tooltip to.

Functions

See Also

official documentation

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
if(interactive()){
library(shiny)

shinyApp(
  ui = fluidPage(
    p("Some text", class = "tooltip"),
    p("Some text", class = "tooltip"),
    p("Some text", class = "tooltip"),
    p("Some text", class = "tooltip"),
    p("Some text", class = "tooltip"),
    p("Some text", class = "tooltip"),
    tippy_class("tooltip", content = "Hi!") # all elements with class
 ),
 server = function(input, output) {}
)
}

tippy documentation built on Jan. 16, 2021, 5:29 p.m.