Please help, how can I change (or get) the text "19000" in the image using javascript? I need to know it to automate tasks filling in some blanks logging in website and more. Thank you.
https://shopee.vn/buyer/login This is a site I want to crawl the informations.
If you give the div tag an id attribute such as
<div id="my_id">Some Text</div>
then you can can change the text it contains from JavaScript using
document.getElementById("my_id").innerHTML = "New text";
2.1m questions
2.1m answers
60 comments
57.0k users