Hi effsol,
Thanks for reporting :)
The coolclock javascript is done by Simon Baird and any issues related to the script itself should be reported on https://github.com/simonbaird/CoolClock/issues
Please mention the script version number when reporting any issues. All plugin versions below 2.9 use script version 2.1.4, the latest plugin uses script version 3.0.0-pre
However, before doing so, you might want to upgrade the plugin to version 2.9 and if the issue remains, try the following:
Go to your WP admin page Plugins > Editor and select the CoolClock plugin. Find in the file coolclock.php the following lines, not far from the end of the file:
}
echo '<!--[if lt IE 9]>';
wp_print_scripts( 'excanvas' );
echo '<![endif]-->
';
}
}
Now remove both <!--[if lt IE 9]>
and <![endif]-->
so it will look like:
}
echo '';
wp_print_scripts( 'excanvas' );
echo '
';
}
}
Then hit Update File and let me know if that changes anything. :)