How to handle bitmovin's start and pause event in javascript

Hi @rajeshrai0512,

Thank you for reaching out to us.

Here is the code to listen for the pause event.

player.on('paused', function () {
    alert("hello world stop");
});