Search
 
SCRIPT & CODE EXAMPLE
 

HTML

how to remove right clickk option from 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 make an element unclickable 
Html :: svelte for loop 
Html :: boostrap 4 clear input 
Html :: axonivy composite 
Html :: how to use pyscript in html 
Html :: git 443 operation timed out 
Html :: ocr 
Html :: how to call a function as soon as a page loads javascript 
Html :: css align image right 
Html :: how to fix a footer to the bottom of page css 
Html :: how to create an html file 
Html :: how to get the name of a html balise and pass it in onPress 
Html :: meta tags html 
Html :: html radio button checked by default 
Html :: borderless bootstrap table 
Html :: image grid markdown github 
Html :: mobvoi.com 
Html :: how to make a html link execute a javascript function 
Html :: a tag html without href 
Html :: html textbox pattern mobile number 
Html :: happy birthday html animation 
Html :: how to make a scrollable list in html 
Html :: pyscript python 
Html :: html basico 
Html :: font awesome tag 
Html :: how to write superscript in html 
Html :: disable overscroll html 
Html :: vuetify row center vertically 
Html :: add a gif a background image in html 
Html :: bootstrap 4 spinner not showing 
ADD CONTENT
Topic
Content
Source link
Name
7+6 =