I would like to display/program my HTML page differently with and without accessibility feature is ON.
How to know accessibility software ( talkback in android , voicevoer in iOS) is ON in mobile browser ?
Is there any JavaScript variable available/object to know the above?
Observation
In Android Chrome browser, if accessibility is on, software is inserting couple of JavaScript files into browser. for example, chromeVoxChromePageScript.js, etc. chromeVoxChromePageScript.js file has a cvox object.
we can keep if accessibility is on:
if(typeof cvox !== "undefined" ){
// specific code
}
is there any better way in iOS/android?