I am trying to incorporate JS into Shiny that is without writing anything to server. Here is the code
library(shiny)
ui <- fluidPage(
tags$head(HTML('<p id="res">Value</p>'),
tags$script("document.getElementById('res').innerHTMl=x")),
textInput("x", label = "Text")
)
server <- function(input, output) {
}
shinyApp(ui, server)
So basically, whatever we write inside the text box, the "Value" should get changed. Can anyone help me?