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 :: autoredirect html 
Html :: html set theme color 
Html :: registered symbol html 
Html :: input type file accept only images 
Html :: html open link in new tab 
Html :: html disable enter submit 
Html :: index.html?profile=Responsive:30 Uncaught ReferenceError: $ is not defined 
Html :: new tab in html 
Html :: centre text bootstrap 
Html :: link icon html 
Html :: add space in html 
Html :: bootstrap 5 font weight 
Html :: gender selection in html 
Html :: dropdown first option not selectable 
Html :: flexbox bootstrap 4 
Html :: bootstrap align right 
Html :: link to send email with subject 
Html :: onclick button href 
Html :: how to add icon to custom page tab 
Html :: html insert pdf 
Html :: how to add image caption in markdwon 
Html :: mdb input bg 
Html :: html sms link android 
Html :: remove click efect bootstrap 
Html :: html template 
Html :: html page scroll horizontal problem 
Html :: get input value on button click javascript 
Html :: how to change progress tag bar color in html 
Html :: How do you require 8-digit password in an input 
Html :: accept function jsf component 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =