i am assuming that you are referring to the google news page?
Yes i am referring to that page and whenever i minimise the video the network usage stops...i have checked with many videos
just play the video and press the toggle button. the video would continue to play like usual. if you check the code of google news... they are using javascript to interact with the youtube vidoe element.
hehe yeah. firefox seems to stop the video on pressing the toggle button. looks like the video code is refreshed on the toggle and that sorts of kill the already downloaded sections of the video.
in any case jquery can be modified to achieve the result we want.i saw this script being used to toggle iframe contaning video$("button").click(function () {$("p").toggle("slow");}); which can be modified as :$("button").click(function () {$("p").toggle("slow");$("iframe").attr('src', $("iframe").attr('src'));}); i havent tested it but it shud give us the desired result.
This website uses affiliate links. This means that if you click on a link and make a purchase, we may receive a commission. This does not affect the price you pay for the product.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.