Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to overlay a <div> on my jwplayer. I believe in order to do this, I have to set the 'wmode' parameter to be 'transparent.' So far I've been unsuccessful trying it this way:

jwplayer('profile-video').setup(
                'width': '640',
                'height': '360',
                'skin' : "/jwplayer/skins/bekle.xml",
                'file' : video_url,
                'wmode' : 'transparent'
            )

Anyone see where I'm going wrong or maybe 'wmode' is the wrong parameter to be setting?

share|improve this question

1 Answer

up vote 0 down vote accepted

That should be fine too, but the best way to really overlay a div on top of a JW Player is via a JavaScript plugin. We have a SDK available here with a sample Hello World JS based plugin - http://developer.longtailvideo.com/trac/

share|improve this answer
Do you know if this only applies to the flash version? – wuliwong Mar 7 at 23:09
Works in both Flash and HTML5 :) – Ethan LongTail Mar 7 at 23:11
I downloaded your "settable wmode" example and tried to move a <div> to overlay the transparent jwplayer but the player still covered it. – wuliwong Mar 7 at 23:32
That example is for JW5, not 6, and per my answer above, the official way to overlay a div on top of the player is via a JS plugin. If you download the SDK there is a JS plugin which works in Flash and HTML5 mode called helloworld.js which indeed overlays a div over the player. – Ethan LongTail Mar 7 at 23:39
Maybe I don't understand what wmode is for? From my experience with the YouTube player, I thought the idea was that setting wmode=transparent allowed you to have other html elements display over the player. But that doesn't seem to be the behavior for the jwplayer. Anyway, I downloaded the plugin and was able to have that produce text. Super-convenient, lol. – wuliwong Mar 7 at 23:58
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.