Forum Discussion
Colin_McCrae
11 years agoCommunity Hero
It's just a property of the object (cell, field, textbox .... whatever). Just grab that property at the appropriate time. This is pretty basic stuff!
eg. Looking at one object in my web application (in Chrome), I could take any one of the following properties during the run to get it's text content:
contentText
textContent
innerHTML
innerText
outerText
and even outerHTML if I wanted to parse it and make life difficult for myself.
eg. Looking at one object in my web application (in Chrome), I could take any one of the following properties during the run to get it's text content:
contentText
textContent
innerHTML
innerText
outerText
and even outerHTML if I wanted to parse it and make life difficult for myself.