html - Ruby Net::HTTP and iframe src -
currently i'm learning how html page, , have interesting question. example, have iframe
on page , want data single net::http.get
request.
for example, loaded page looks that:
<body> <h1>my page</h1> <iframe src='some_url'> <html> <head> ... </head> <html> </iframe> </body>
but if net::http
request only
<body> <h1>my page</h1> <iframe src='some_url'></iframe> </body>
is there way page sing net::http
request?
Comments
Post a Comment