https://github.com/fetch/jquery-jwplayer
jQuery wrapper for JWPlayer
https://github.com/fetch/jquery-jwplayer
Last synced: 6 months ago
JSON representation
jQuery wrapper for JWPlayer
- Host: GitHub
- URL: https://github.com/fetch/jquery-jwplayer
- Owner: fetch
- Created: 2012-07-17T16:26:35.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-07-17T16:28:23.000Z (over 13 years ago)
- Last Synced: 2025-09-15T07:36:33.878Z (7 months ago)
- Language: CoffeeScript
- Size: 91.8 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## JWPlayer jQuery wrapper
##### Build for better event handling
```javascript
$("#video-area").jwplayer({
flashplayer: "/jwplayer/player.swf",
file: 'some/video/file.mp4',
autoplay: true,
width: 630,
height: 480
});
$("#video-area").on('jwplayer:complete', function(event, data){
// Remove complete event and replay video
$(this).off(event).jwplayer('play');
});
```
### Credits
- Built by [Fetch!](http://www.fetch.nl/).
- Concept and development by [Koen Punt](http://koen.pt/)