- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to avoid repeat reloading of HTML video on the same page?
Use preload = ”auto” to avoid repeat reloading of HTML video on the same page −
<!DOCTYPE html> <html> <body> <video width = "350" height = "200" controls = "controls" preload = "auto"> <source src = "movie.mp4" type = "video/mp4" /> <source src = "movie.ogg" type = "video/ogg" /> Your browser does not support the video tag. </video> </body> </html>
- Related Articles
- How to add video in HTML page?
- How to use multiple versions of jQuery on the same page?
- How to avoid Java code in jsp page?
- Hide a video tag on a web page - JavaScript
- How to specify if and how the author thinks the audio/video should be loaded when the page loads in HTML?
- How to make page links in HTML Page?
- Safari on iPad (iOS6) does not scale HTML5 video to fill 100% of page width
- How to include the audio/video controls in HTML?
- JavaScript code to de-select text on HTML page.
- How to set the audio output of the video to mute in HTML?
- How to Avoid online Scams on Facebook?
- How to embed a video using HTML code?
- Repeat even number inside the same array - JavaScript
- How to link jQuery in HTML page?
- How to draw circle in HTML page?

Advertisements