Making video play continuously even when changing html page with javascript and no frames
3 answers
I think you want to validate AJAX (Asynchronous JavaScript and XML). This allows you to manipulate parts of the page (in general, the entire HTML DOM) using callbacks to the server via JavaScript. This is exactly what YouTube / Google Videos use for voting / feedback while still watching the video, as any page reload causes the browser to stop playing the video and restart.
There are different options for the AJAX libraries depending on what web framework you are using. For example, Microsoft has created their own [ASP.NET AJAX]] ( http://www.asp.net/ajax/ ), which is now very mature.
+2
a source to share