jplayer / jPlayer

jPlayer : HTML5 Audio & Video for jQuery
http://jplayer.org/
Other
4.6k stars 1.47k forks source link

Add attrubute on video via jPlayer #373

Closed Kison closed 7 years ago

Kison commented 7 years ago

Hi, i need to add webkit-playsinline attribute on video tag. What is the right way to do it via jPlayer plugin?

Kison commented 7 years ago

Problem solved without using jPlayer functions

Here is solution if somebody will interested:

$('#wrapper').jPlayer(....);
var video = $("video", "#wrapper");
video.attr('webkit-playsinline', 'webkit-playsinline');