Function to get the contents of an HTML or XML token, similar to .innerHTML
in JavaScript. The function can return text only or include all nested tags. This function is the equivalent of the method .getText()
if(token.isTag("p")) { var paragraphText = token_getText(token, false); var paragraphHTML = token_getText(token, true); }
Parameter | Data type | Required | Description |
---|---|---|---|
token | Token object | true | The token to get the contents of |
includeHTML | boolean | Sets whether you want to get only the stripped text without HTML (false , default) or the full content (true ) |
Value | String Value |
---|---|
string | The token content |