Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

126
Views
Trying to incorporate JS into shiny

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?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

This would do it.

  • Try not to put actual content like text inside tags$head except meta, link, CSS or script.
library(shiny)

ui <- fluidPage(
    HTML('<p id="res">Value</p>'),
    textInput("x", label = "Text"),
    tags$script("$('#x').on('input', function(){$('#res').text($(this).val());});")
)

server <- function(input, output) {}

shinyApp(ui, server)
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!