1
0
mirror of https://github.com/videojs/video.js.git synced 2024-11-26 08:51:09 +02:00

Update docs to reflect being able to pass an element instead of ID. Closes #844

This commit is contained in:
Matthew McClure 2014-02-07 16:26:49 -08:00
parent 0fc76451f9
commit 2b1291816f

View File

@ -86,3 +86,11 @@ The second argument is an options object. It allows you to set additional option
The third argument is a 'ready' callback. Once Video.js has initialized it will call this function.
videojs(document.getElementsById('example_video_1')), {}, function()) {
// This is functionally the same as the previous example.
});
videojs(document.getElementsByClassName('awesome_video_class')[0], {}, function()) {
// You can grab an element by class if you'd like, just make sure
// if it's an array that you pick one (here we chose the first).
});