How to resize YouTube player when Window Resize

Posted by Permana on Stack Overflow See other posts from Stack Overflow or by Permana
Published on 2010-03-20T04:14:16Z Indexed on 2010/03/20 4:21 UTC
Read the original article Hit count: 702

Filed under:
|
|
|
|

I want to show Popup window contain YouTube video. My question is how to resize YouTube Player when user resize the Popup Window ?

Head section of Popup windows PHP/HTML code

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Wavin Video</title>

<script src="jquery-1.4.1.min.js" type="text/javascript"></script>
<script type="text/javascript" charset="utf-8">

$(document).ready(function(){

    //If the User resizes the window
    //$(window).bind("resize", resizeWindow);
    $(window).resize(resizeWindow).resize()
    function resizeWindow( e ) {
        var target = "#youtubebox2";
        var newWindowHeight = $(window).height();
        var newWindowWidth  = $(window).width();

        console.log("Width : "+newWindowWidth);
        console.log("Height: "+newWindowHeight);
        console.log("---------");

        $(target).html("<object width=\""+newWindowWidth+"\" height=\""+newWindowHeight+"\" id=\"youtubebox\"><param name=\"movie\" value=\"http://www.youtube.com/v/<?php echo $_GET['filename'];?>\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/<?php echo $_GET['filename'];?>\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\""+newWindowWidth+"\" height=\""+newWindowHeight+"\"></embed></object>");
    }

});

</script>

</head>
<body>
<div align="center" style="padding:6px 0px 0px 0px;background-color: #ccc;" id="youtubebox2">

<object width="480" height="385" id="youtubebox">
<param name="movie" value="http://www.youtube.com/v/<?php echo $_GET['filename'];?>"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/v/<?php echo $_GET['filename'];?>" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385">
</embed>
</object>

</div>
</body>
</html>

the page receive youtube video ID through $_GET variable.

the code above didn't work, the YouTUbe Player is not resized. Is there something I miss ?

© Stack Overflow or respective owner

Related posts about youtube

Related posts about jQuery