Help how to stop video

Help how to stop video

hi,
I am using jquery mobile , 
when I close popup, the video continues to play...
have any solution?

  1. <!DOCTYPE html> 
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Aplic. Web de jQuery Mobile</title>
  6. <link href="jquery-mobile/jquery.mobile-1.0.min.css" rel="stylesheet" type="text/css"/>
  7. <script src="jquery-mobile/jquery-1.6.4.min.js" type="text/javascript"></script>
  8. <script src="jquery-mobile/jquery.mobile-1.0.min.js" type="text/javascript"></script>
  9. <script type="text/javascript">
  10.   $(document).ready(function(e) {
  11. $("#openVideo").click(function(){
  12. $.mobile.changePage('#page2', {transition: 'pop', role: 'dialog'}); 
  13. });
  14. $("#page2").live("pagebeforehide", function(event) {
  15. //----> HOW STOP VIDEO?
  16.           
  17.   });
  18. });
  19.  </script>
  20. </head> 
  21. <body> 

  22. <div data-role="page" id="page">
  23. <div data-role="header">
  24. <h1>START</h1>
  25. </div>
  26. <div data-role="content">
  27. <a href="" id="openVideo" data-inline="false" data-role="button">abrir</a>
  28. </div>
  29. </div>


  30. <!-- ****************************PAGE 2*************************** -->


  31. <div data-role="page" id="page2" data-theme="a">
  32. <div data-role="header">
  33. <h1>VIDEO</h1>
  34. </div>
  35. <div data-role="content" data-theme="a">
  36. <div data-role="popup" id="popupVideo" data-overlay-theme="a" data-theme="d" data-tolerance="15,15" class="ui-content">
  37.     
  38.     <iframe id="vid" src="video.avi" width="420" height="298" seamless></iframe>
  39.       
  40. </div>
  41. </div>
  42. </div>

  43. </body>
  44. </html>