Here is my scenario: I am embedding a video into a page that is packaged in phonegap. The first time you hit the page the video appears and will play. When the back button is hit the video stops playing and the you are returned to the previous page. If you try and navigate back to the video just the control bar shows up and the video doesn't appear. If you press play the audio plays but no video does. Here is my html code:
<section id="presentationlink_Demo" data-role="page" data-theme="b" data-fullscreen="true">
<header data-role="header"><h1>Presentation Link - Demo</h1></header>
<div class="content" id="presentationDemo" data-role="content">
<OBJECT id="linkVideo" classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab'>
<param name='src' value="videos/PT/PT.mov">
<param name='controller' value="true">
<param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always">
<EMBED src="videos/PL/PL.mov" controller="true" pluginspage='http://www.apple.com/quicktime/download/'>
</EMBED>
</OBJECT>
</div>
<footer data-role="footer" data-position="fixed"></footer>
</section>
The html is not touched by any js. Thanks in advance for any help.