(function($) {
$(function() {
-
- $("#jplayer").jPlayer({
+ $("#jplayer").each(function() {
+ var $self = $(this);
+ $self.jPlayer({
swfPath: "/static/jplayer/",
solution: "html,flash",
- supplied: $(this).attr('data-supplied'),
+ supplied: $self.attr('data-supplied'),
ready: function() {
var player = $(this);
});
}
});
-
+ });
});
})(jQuery)
\ No newline at end of file