Answer the question
In order to leave comments, you need to log in
How to read a number from a site?
All the best, tell me please, how can I "pull out" the number from the page?
You need to pull out 70.1241
It is located here:
The DOM properties are:
Answer the question
In order to leave comments, you need to log in
var number = document.querySelectorAll('tbody')[0].querySelectorAll('tr')[0].querySelectorAll('td')[4].textContent;
$('tbody > tr:eq(0) > td:eq(4)').text();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question