tags:

views:

9

answers:

1

I have the following code, i'm reading the doc's but weirdly i can't get this to play. I've double checked all the files are in the right location. Must be something dumb.

<html xmlns="http://www.w3.org/1999/xhtml"&gt; 
<head> 
    <title></title> 

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"&gt; 
 <script type="text/javascript" src="/jwplayer/jwplayer.js"></script> 
</script> 

</head> 
<body> 

<div id="container">Loading the player ...</div> 
<script type="text/javascript"> 
    jwplayer("container").setup({
    flashplayer: "/jwplayer/player.swf",
    file: "/media/flvs/mayfair.flv",
    height: 270,
    width: 480
});
</script> 

</body> 
</html> 
A: 

I found a workaround. There was some server issue so this is not an issue with JWPlayer.

frosty