Add bootstrap tooltip to column header in shiny app
问题 I am trying to add tooltips to each column header of the data table, but failed. Could anybody teach me how to do this using jQuery. Thanks shinyApp( ui = fluidPage( fluidRow( tags$head( tags$script( src = "https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"), tags$script( src = "http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js") ), column(12, tableOutput('table') ) ) ), server = function(input, output) { output$table <- renderTable(iris) } ) # DataTables