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');
}
?>