Sorry if the question is worded weird, but here's what I'm trying to do. I need to collect a specific line of information from a web page. I am having problems with the fact that I cannot figure out which correct selector to use eq()does not work. Here is the source from the page I'm trying to get information on.
<div class="info" id="Data">
Domain Name: example.com
<br>
Registry: 12345
<br>
When I check an element, I get a div # Data.info (text) I tried $('div#info.Data').eq(1).text()several other combinations. I'm new to scripting and the (text) part - this is what I think it throws me off.
source
share