Viewing 1 replies (of 1 total)
  • Plugin Author S3Bubble

    (@s3bubble)

    Hi hayatihya,

    Everything is wrapped up and minified into a global js file within the plugin so i think you are going to find it hard to add custom events within that code.

    Also any extra functionality will be lost on plugin upgrade if you add it there.

    You can find your player id and add a custom event to that in a separate js file outside the plugin.

    For example.

    $("#playerID").on("ended", function(event) {
        console.log("Run some code!!!");
    });

    Best Regards

    Sam

Viewing 1 replies (of 1 total)
  • The topic ‘Detect if video is complete’ is closed to new replies.