I want to embed a table from external website, such as investing.com but I'm finding difficult embedding a specific div
, in current example the exchange rate table has id = cr1
. How can I only embed the table itself?
rm(list = ls())
library(shiny)
ui <- fluidPage(titlePanel("Getting A specific div from external website"),
mainPanel(fluidRow(
tags$iframe(seamless="seamless",src="http://www.investing.com/quotes/streaming-forex-rates-%E2%80%93-majors", height=600, width=1000)
)
)
)
server <- function(input, output) {}
shinyApp(ui, server)
I want table in Red only