Node.js examples for Environment:Browser
Check if the user is using Internet Explorer 8 (for fallback)
/*/* 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; };