Hi everyone,
I try to use jwplayer (6.2 version) on a website. It works well on my computer and some others but it doesn't work on ohter. I tried lot of things like install / reinstall / update Flash etc...
The error is still the same:
Uncaught TypeError: d(...).getPlaylist is not a function
at l.model.j.setPlaylist (jwplayer.html5.js:153)
at Object.method (jwplayer.html5.js:193)
HEre my sample code:
$(document).on('ready', function() {
$('.videos').each(function(){
var movie = $(this);
jwplayer(movie.attr('id')).setup($.extend({}, jwplayerDefault, {
file: movie.attr('data-url'),
image: movie.attr('data-image'),
width: '100%',
height: 150
}));
});
});
Loading the player...
I have checked that any argument was existing (and it is).
Any help?
↧