Search
 
SCRIPT & CODE EXAMPLE
 

HTML

how to stop download option in video tag of HTML

BY LOVE
Just add controlsList="nodownload" in your video tag.
Comment

how to remove download option from video tag in html

To remove the download option
<-- Add the line below to your video tag -->
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>

You can also 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>
Comment

PREVIOUS NEXT
Code Example
Html :: twig count array 
Html :: html input box no border 
Html :: html chevron 
Html :: html text not markable 
Html :: autoredirect html 
Html :: disable html form input autocomplete autofill 
Html :: Uncaught ReferenceError: jQuery is not defined 
Html :: html disable enter submit 
Html :: html video disable right click 
Html :: regex remove html comment 
Html :: a href mail 
Html :: how to link html pages in different folders 
Html :: viewport meta tags 
Html :: html href tel 
Html :: regex to remove html tags python 
Html :: justify-content-between bootstrap 4 
Html :: vertical break html 
Html :: href disable underline 
Html :: font awesome 5 pro 
Html :: font awesome src 
Html :: react html mouseover 
Html :: html link tag 
Html :: html select tag default value 
Html :: regex to select everything in a html tag 
Html :: open link in a new tab hmtl 
Html :: how to disable password autofill in react 
Html :: can get input value from dangerouslysetinnerhtml 
Html :: input without autocomplete 
Html :: how to send html file with express 
Html :: how to add space between buttons 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =