esedic
9/2/2014 - 7:55 AM

Detect older IE with PHP and load HTML5 shiv library

Detect older IE with PHP and load HTML5 shiv library

<?php
  //IE8 compatibility
  if(preg_match('/(?i)msie [1-8]/',$_SERVER['HTTP_USER_AGENT']))
    {
      JFactory::getDocument()->addScript('https://html5shiv.googlecode.com/svn/trunk/html5.js');
    }
?>