html - What is the simplest or best way for preventing the background video from loading on mobile browsers? -


i have webpage loads video background. want prevent video loading on (at least some) mobile browsers. have disabled displaying video using @media tag, think doesn't prevent browser loading video.

@media screen , (max-device-width: 800px) {     #bgvid {         display: none;     } } 

i'd know how prevent video loading on mobile browsers. great if done without using javascript.

turned out media tags enough prevent loading of videos on mobile browsers (for devices don't exceed specified width).


Comments

Popular posts from this blog

php - Submit Form Data without Reloading page -

linux - Rails running on virtual machine in Windows -