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

head

<script type="text/javascript" src="/jwplayer/jwplayer.js"></script>

body

<div id="test">Loading the player ...</div>
<script type="text/javascript">
jwplayer("test").setup({                      // this is critical line
flashplayer: "/jwplayer/player.swf",
file: "video.mp4",
height: 270,
width: 480
});
</script>

"jwplayer.js" and "player.swf" are in folder "jwplayer" which is in root.
"video.mp4" is in root directly.
div test appears on page, but player does not.
Firefox 16
Check in firebug console says:

ReferenceError: jwplayer is not defined
jwplayer("test").setup({
share|improve this question

migrated from codereview.stackexchange.com Oct 27 '12 at 19:50

1 Answer

The code looks fine to me. Have you looked at the networking tab of firebug? Make sure that jwplayer.js is loaded and not a 404.

404 sample

share|improve this answer

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.