observeEvent(input$needhelp, {
showModal(modalDialog(
title = "For help:",
"Refer to documentation <a href='www.someplace.com'> here </a>."
))
})
Hi @tpahern. You may try the following.
observeEvent(input$needhelp, {
showModal(modalDialog(
title = "For help:",
tags$div("Refer to documentation", tags$a(href = 'www.someplace.com', "here"))
))
})
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.