I couldn't fix this for IE9 so I did the next best thing, disabled it for IE9 users.
If anyone is interested go to your plugin manager, edit the plugin:
[live topic] template edits
Erase it all and replace it with this code:
PHP Code:
function ieversion()
{
$match = preg_match('/MSIE ([0-9]\.[0-9])/',$_SERVER['HTTP_USER_AGENT'],$reg);
if ($match == 0)
return -1;
else
return floatval($reg[1]);
}
if (ieversion() < 9.0)
{
$is_livetopic = true;
$livetopichook = 'template_edits';
include 'includes/livetopic_hooks.php';
}
I'm using the IE Version Detector
from this site.
I only tested this on IE9 and Chrome, no promises, but I'm using it.