I have a box in my shiny application that has a button included within a shiny dashboard box like this:
shiny::fluidRow( shinydashboard::box(title = "Intro Page", "Some description...", shiny::actionButton(inputId='ab1', label="Learn More", icon = icon("th")) ) )
I want to include a weblink in the button such that when I click on it, it should open the corresponding webpage in a new tab.
I know that I can do this instead:
# this does not create a submit button though, it just creates a link. tags$div(class = "submit", tags$a(href = "www.google.com", "Learn More", target="_blank") )
But with actionButton, there is a nice button and I can add an icon to it which looks aesthetically better.
How do I add a link to actionButton in shiny?
You can add the parameter
onclick ="location.href='http://google.com';"
To the action button and clicking it will take you to google.com in the current window or you can add
onclick ="window.open('http://google.com', '_blank')"
and you will be taken to Google in a new tab
That is
shiny::fluidRow( shinydashboard::box(title = "Intro Page", "Some description...", shiny::actionButton(inputId='ab1', label="Learn More", icon = icon("th"), onclick ="window.open('http://google.com', '_blank')") ) )
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With