Dynamically use tippy.
use_tippy()
call_tippy(target, ...)
tippy_class(class, ...)
Target element.
Any option from the official documentation.
Class of elements to apply tooltip to.
use_tippy
Includes tippy.js in header.
call_tippy
call tippy
on specific target element(s), place after elements to be targeted.
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) {}
)
}