All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javascript.elementTextData.js Maven / Gradle / Ivy

The newest version!
const element = arguments[0];
var textValue, result = {};

textValue = element.innerText;
if(textValue){
	result['text'] = textValue.trim().replace(/\xA0/g," ").replace(/\n+/g," ");
}else{
	result['text'] = "";
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy