Browser Support

Browser compatibility information for CueCatch.

Supported Browsers

CueCatch surveys are compatible with all modern browsers on desktop and mobile devices. Specifically, CueCatch surveys have been tested on the following browsers:

  • Google Chrome (version 79+)
  • Mozilla Firefox (version 65+)
  • Apple Safari (version 12+)
  • Microsoft Edge (version 79+)
  • Opera (version 58+)
  • Samsung Internet (version 10+)

CueCatch uses modern web technologies to provide a fast and responsive survey experience. Legacy browsers like Internet Explorer and Classic Edge are not supported due to non-standard DOM behavior.

Detecting Browser Support

To ensure compatibility, use the following feature detection code to check if the browser supports CueCatch:

javascript
// Check if the browser supports CueCatch
if (typeof globalThis === 'undefined') {
  // CueCatch is not supported
} else {
  // CueCatch is supported
}