R Shiny: Present a ShinyBS Modal Popup on page visit (no user action)
问题 I used bsModal successfully in my code before. However, I can't seem to get a modal pop up to show just when the user visits an app's first page by default. I thought something like this would work, but not. Any idea how I can trigger a bsModal on page visit? library(shiny) library(shinyBS) ui <- fluidPage( mainPanel( bsModal(id = 'startupModal', title = 'Dum Dum', trigger = '', size = 'large', p("here is my mumbo jumbo")), width = 12 ) ) server <- function(input, output, session) { }