Skip to content
Advertisement

how to get the value from an xpath

I try to get the value from a XPath, but I always get “undefined” “null” as answer

that’s the HTML code from the XPath:

JavaScript

and I tried it multiple times with:

JavaScript

does someone have any idea?

Advertisement

Answer

You can get value by using:

JavaScript

But

DIVs do not have a value property.

So you need to use another element with value property

Or use innerHTML to get 20 in your case:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement