Avoid IE6, It’s time to upgrade

August 23rd, 2008 | Tags:

Stumbled into this javascript code while looking at jQuery Lightbox Plugin (balupton edition) code which redirect me to http://www.savethedevelopers.org/ and yes, it’s time to move on. Support this campaign by attaching the snippets at the top of you page. Thanks.

// Avoid IE6, It's time to upgrade
if ( navigator.userAgent.indexOf('MSIE 6') >= 0 )
{ // Is IE6
  // Include Upgrade Message
  var headEl = document.getElementsByTagName('head')[0];
  var scriptEl = document.createElement('script');
  scriptEl.type = 'text/javascript';
  scriptEl.src = 'http://www.savethedevelopers.org/say.no.to.ie.6.js';
  headEl.appendChild(scriptEl);
  // Kill Lightbox
  return null;
}
No comments yet.