I cannot start jPlayer via
("#jquery_jplayer_1").jPlayer("play",0);
or
("#jquery_jplayer_1").jPlayer("play");
How it could be done?
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=9">
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
<title>Media Website</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script type="text/javascript" src="jquery.jplayer.min.js"></script>
<script type="text/javascript">
//<![CDATA[
var isEnded;
var posterLink;
function SetPosterLink(p) {
posterLink = p;
$("#jquery_jplayer_1").jPlayer({
poster: posterLink
});
}
function ChangeSize(h, w) {
$("#jquery_jplayer_1").jPlayer({
size: { width: w + "px", height: h + "px" }
});
}
function Play() {
// It doesnt work.... I need help here.
$("#jquery_jplayer_1").jPlayer("play",0);
}
function Pause() {
$("#jquery_jplayer_1").jPlayer("pause");
}
function Stop() {
$("#jquery_jplayer_1").jPlayer("stop");
}
function IsEnded() {
return isEnded;
}
function CreatePlayer() {
$("#jquery_jplayer_1").jPlayer({
ready: function () {
$(this).jPlayer("setMedia", {
ogv: "http://www.jplayer.org/video/ogv/Big_Buck_Bunny_Trailer.ogv",
webmv: "http://www.jplayer.org/video/webm/Big_Buck_Bunny_Trailer.webm",
m4v: "http://www.jplayer.org/video/m4v/Big_Buck_Bunny_Trailer.m4v",
poster: "http://www.jplayer.org/video/poster/Big_Buck_Bunny_Trailer_480x270.png"
});
},
ended: function (event) {
isEnded = 'ended';
},
swfPath: "/",
supplied: "webmv, ogv, m4v",
size: {
width: "640px",
height: "360px"
}
});
}
$(document).ready(function () {
CreatePlayer();
var height = getURLParameters('height');
var width = getURLParameters('width');
ChangeSize(height, width);
Play();
});
function getURLParameters(paramName) {
var sURL = window.document.URL.toString();
if (sURL.indexOf("?") > 0) {
var arrParams = sURL.split("?");
var arrURLParams = arrParams[1].split("&");
var arrParamNames = new Array(arrURLParams.length);
var arrParamValues = new Array(arrURLParams.length);
var i = 0;
for (i = 0; i < arrURLParams.length; i++) {
var sParam = arrURLParams[i].split("=");
arrParamNames[i] = sParam[0];
if (sParam[1] != "")
arrParamValues[i] = unescape(sParam[1]);
else
arrParamValues[i] = "No Value";
}
for (i = 0; i < arrURLParams.length; i++) {
if (arrParamNames[i] == paramName) {
//alert("Param:"+arrParamValues[i]);
return arrParamValues[i];
}
}
return "No Parameters Found";
}
}
//]]>
</script>
<style type="text/css">
html, body {
overflow: hidden;
}
* {
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
<div id="jquery_jplayer_1" class="jp-jplayer"></div>
</body>
</html>
The error is
Uncaught TypeError: Property 'player' of object [object Window] is not a function
when I use player("play") however when I use
$("#jquery_jplayer_1").jPlayer("play",0);
there is no error at all
CreatePlayer();and step through, do the functions all work correctly? for example, the resize work correctly?, also, does("play", 0)work? or does it not work and displays no error? – kolin Feb 5 at 15:34