Property innertext was not found. #15
-
Hello dear developer, I get the error message: I use very simple
I hope this information is enough for you. I use an extra function because I have to distinguish between each attribute. Would it be possible for cefsharp to make a difference? Greetings from Germany |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
The error is self explanatory really, there is no such property. The language is case sensitive, it's innerText not innertext. https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/innerText
As I've said before you'd be better removing these functions they make your code harder to read and maintain, offer little value. |
Beta Was this translation helpful? Give feedback.
The error is self explanatory really, there is no such property. The language is case sensitive, it's innerText not innertext.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/innerText
As I've said before you'd be better removing these functions they make your code harder to read and maintain, offer little value.