JohnRDOrazio/jQuery-Clock-Plugin

Doesn't support IE 9?

Closed this issue · 1 comments

Doesn't support IE 9?

Version 2.3.4 does not support IE9 because IE9 does not fully support the Performance Web API. You can use versions prior to 2.3.4 on IE9 or, if you would like to use version 2.3.4 on IE9, you can use the following polyfill before including the jQuery Clock script in your page:

<script>
(function (global) {

var
startTime = Date.now();

if (!global.performance) {
    global.performance = {};
}

global.performance.now = function () {
    return Date.now() - startTime;
};

}(this));
</script>