Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to position some video player controls on the bottom of the player when page loads. When a window resize event occurs, the video player controls should move to the top. When the window is restored to the original size again, the controls should move to the bottom. I'm using mediaelementjs videoplayer and following is the code which I added to move the controls to the top. Once the window is restored to the original size, I cant get the controls to the bottom. Is there a jQuery or javascript solution that can be used to identify the window has been restored to the original size?

// adjust controls whenever window sizes (used to be in fullscreen only)
                $(window).resize(function() {

                    // don't resize for fullscreen mode             
                    if ( !(t.isFullScreen || (mejs.MediaFeatures.hasTrueNativeFullScreen && document.webkitIsFullScreen)) ) {
                            alert("inside if");
                        t.setPlayerSize(t.width, t.height);
                    }
//This line of code moves the player controls to the top when window resize occurs
                    t.container.find('.mejs-controls').css('top', '0px');
                    // always adjust controls
                    t.setControlsSize();
                });     
share|improve this question
In short I want to be able to identify if the window has been resized, then doSomething, else if its back to restored size doanotherthing. – web_dev Jun 7 '12 at 20:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.