embed iframe inside shiny app
问题 this is my UI. R shinyUI(fluidPage(titlePanel("Getting Iframe"), sidebarLayout( sidebarPanel( fluidRow( column(6, selectInput("Member", label=h5("Choose a option"), choices=c('BCRA1','FITM2')) ))), mainPanel(fluidRow( column(3, htmlOutput("frame")) ) ) ))) This is my server.R library(shiny) members <- data.frame(name=c("Name 1", "Name 2"), nr=c('BCRA1','FITM2')) shinyServer(function(input, output) { loadframe <- reactive({ validate( need(input$Member, "Member input is null!!") ) query <-