Check if the user is using Internet Explorer 8 (for fallback) - Node.js Environment

Node.js examples for Environment:Browser

Description

Check if the user is using Internet Explorer 8 (for fallback)

Demo Code


/*/* w ww.  j av  a2  s .  co  m*/
 * Check if the user is using Internet Explorer 8 (for fallbacks)
 */
var isIE8 = function isIE8() {
  return window.attachEvent && !window.addEventListener;
};

Related Tutorials