If I'm using Microsoft word and I leave my mouse to hover over the font dropdown menu, this popup appears:
It tells you the dropdown menu's name, what it's for and a shortcut to using it.
I have an Rshiny App with a dropdown menu, and I'd like to have a similar system to aid my users. How would I go about doing so?
Here is some code to show where I'm starting from:
library(shiny)
ui <- fixedPage(
# The alt-text would say "Choose from 3 options"
fixedRow(selectInput("drop", "Features", choices = c(1,2,3))))
shinyApp(ui, server = function(input, output) {})

How about this