Search
 
SCRIPT & CODE EXAMPLE
 

HTML

how to remove options for video tag in html

To disable right clicking on your video in html
<--- Add the line below to your video tag --->
oncontextmenu="return false;"
  
<-- For Example -->
  
<video id="myVideo" width="350" height="500" oncontextmenu="return false;" controls autoplay>
  <source src="video.mp4" type="video/mp4">
</video>
  
<-- You can also remove the download option by adding the line below -->
controlsList="nodownload"
  
  <-- For Example -->
    
<video id="myVideo" width="350" height="500" oncontextmenu="return false;" controlsList="nodownload" controls autoplay>
  <source src="video.mp4" type="video/mp4">
</video>
Comment

PREVIOUS NEXT
Code Example
Html :: how to put something on the bottom right corner in html 
Html :: how to add button to open a website using html 
Html :: ion-searchbar change event 
Html :: jsf axonivy composite 
Html :: how to make an image with a link html 
Html :: thead position sticky 
Html :: export website to html 
Html :: emmet unordered list 
Html :: text souligné html 
Html :: html telephone 
Html :: branch icon font awesome 
Html :: js cannot copy entire object 
Html :: html viewport 
Html :: vue for loop if last 
Html :: [(ngModel)] in a select 
Html :: what is html 5 
Html :: how to make a distance between a label and input html 
Html :: javascript html reCAPTCHA 
Html :: html submit button 
Html :: html phone number validation pattern 
Html :: excel timestamp to date 
Html :: how to make a div stick to bottom of page bootstrap 
Html :: write python in html 
Html :: php prevent form resubmission 
Html :: card button align bottom bootstrap 
Html :: add delay to button 
Html :: disable overscrolling 
Html :: bootstrap grids examples 
Html :: html align text center 
Html :: how to strike out text in html 
ADD CONTENT
Topic
Content
Source link
Name
6+4 =