I\'m building a jQuery plugin for managing HTML5 videos. I\'m trying to capture the canplay and canplaythrough events. In Chrome, the event is fired without problem. In Fire
Adding:
var video = $('video'); video.trigger('load');
After adding the canplaythrough event listener fixed it for me on Firefox and Safari.