is_browser_ie | R Documentation |
Convenience function that checks if the user's browser is detected as Internet Explorer.
See get_browser()
for details.
is_browser_ie()
Whether or not this user using Internet Explorer
if (interactive()) {
library(shiny)
ui <- fluidPage(
shinybrowser::detect(),
"Are you using Internet Explorer?",
textOutput("result")
)
server <- function(input, output, session) {
output$result <- renderText({
shinybrowser::is_browser_ie()
})
}
shinyApp(ui, server)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.