
- Javascript Basics Tutorial
- Javascript - Home
- Javascript - Overview
- Javascript - Syntax
- Javascript - Enabling
- Javascript - Placement
- Javascript - Variables
- Javascript - Operators
- Javascript - If...Else
- Javascript - Switch Case
- Javascript - While Loop
- Javascript - For Loop
- Javascript - For...in
- Javascript - Loop Control
- Javascript - Functions
- Javascript - Events
- Javascript - Cookies
- Javascript - Page Redirect
- Javascript - Dialog Boxes
- Javascript - Void Keyword
- Javascript - Page Printing
- JavaScript Objects
- Javascript - Objects
- Javascript - Number
- Javascript - Boolean
- Javascript - Strings
- Javascript - Arrays
- Javascript - Date
- Javascript - Math
- Javascript - RegExp
- Javascript - HTML DOM
- JavaScript Advanced
- Javascript - Error Handling
- Javascript - Validations
- Javascript - Animation
- Javascript - Multimedia
- Javascript - Debugging
- Javascript - Image Map
- Javascript - Browsers
- JavaScript Useful Resources
- Javascript - Questions And Answers
- Javascript - Quick Guide
- Javascript - Functions
- Javascript - Resources
Hide a video tag on a web page - JavaScript
Let’s say we have the following sample video tag on a web page
<video class="hideVideo" width="350" height="255" controls> <source src="" id="unique_video_id"> You cannot play video here...... </video>
To hide a video on a web page, use yourVariableName.style.display=’none’.
Example
Following is the code −
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet" /> <style> .hideVideo { display: block; z-index: 999; margin-top: 10px; margin-left: 10px; } </style> <body> <video class="hideVideo" width="350" height="255" controls> <source src="" id="unique_video_id"> You cannot play video here...... </video> </body> <script> var hideVideo = document.getElementsByClassName("hideVideo")[0]; hideVideo.style.display = "none"; </script> </html>
To run the above program, save the file name “anyName.html(index.html)”. Righ click on the file and select the option “Open with Live Server” in Visual Studio Code editor.
Output
This will produce the following output on console −
In the above sample output, the video tag has been disabled. If you want to enable, just comment the above line i.e.
//hideVideo.style.display = "none";
After commenting the above line, the video tag will get enabled as shown below −
- Related Articles
- Remove any text not inside element tag on a web page with JavaScript?
- Display all the values of an array in p tag on a web page with JavaScript
- How do I hide an element when printing a web page?
- Creating ‘Copy to Clipboard’ feature on a web page with JavaScript
- Center pagination on a web page with CSS
- How to download all images on a web page at once?
- Get the Contents of a Web Page in a Shell Variable on Linux
- XMLHttpRequest for Video Tag?
- Adding YouTube videos on an HTML web page
- Save a Web Page with Python Selenium
- How to use Google Fonts on your web page?
- How do I redirect my web page with JavaScript?
- Smart Ways to Save a Web Page Forever!!
- How to hide a div in JavaScript on button click?
- Play local (hard-drive) video file with HTML5 video tag?

Advertisements