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 am using the JWPlayer to play a video file and after the video is done I want to show a message. It says here: http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v5/12540/javascript-api-reference

that you have to pass the `

events: {
   onComplete: function() {
    document.getElementById('status').innerHTML = 'That's all folks!';
   }
  }

` code into the setup.

However the events are not working at all.. I tried it in different ways but it does not work.

I have seen this question multiple times on stack overflow but none of them have a solution.

share|improve this question
Did you try onTime(callback)? – Ahmet Can Güven Dec 14 '11 at 12:08
Tried it, but it doesn't seem to fire any events. I don't get any error messages either. – Vincent Cohen Dec 14 '11 at 12:42
1  
Fixed. I haven´t found the anwser online. The javascript files were located before the ending body tag (</body>). After the files were moved to before the ending head (</head>) tag the events worked. – Vincent Cohen Dec 14 '11 at 14:59

1 Answer

up vote 0 down vote accepted

Fixed. I haven“t found the anwser online. The javascript files were located before the ending body tag </body>. After the files were moved to before the ending head1 </head> tag the events worked.

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.