I have been using Phonegap and jquery mobile recently. I am doing a sample application in which I want to display a set of videos. I am using VideoJS plugin to view videos. When I run the application on the device, all I see is the video boxes with controls but it doesn't play the video when I click. I use phonegap video player plugins too but could not succeed in playing videos.
I tried this, too, but could not succeed.
Please let me know what could be done.
Thank you.
EDIT
code: I'm calling my video like this and i'm not sure where to call the plugin. I hope its correct.
<div class="video-js-box">
<video class="video-js" controls="controls" onclick="window.plugins.videoPlayer.play(url);">
<source src="http://video-js.zencoder.com/oceans-clip.mp4" type="video/mp4"/>
</video>
</div>