Context Menu on right click

Native context pop-up menu when you right click over player is replaced by custom Nuevo simple menu. You can disable context menu completely.
Video Player is loading.
Advertisement
Current Time 0:00
Duration -:-
Loaded: 0%
Stream Type LIVE
Remaining Time -:-
1x

    Player Code Setup

    <!--Initialize the player and Nuevo plugin-->
    <script>
    	var player = videojs('player_1)';
    	player.nuevo({ 
    		contextMenu: false
    	}); 
    </script>
    

    You can also prepare your own context menu with custom icon and custom text
    Video Player is loading.
    Advertisement
    Current Time 0:00
    Duration -:-
    Loaded: 0%
    Stream Type LIVE
    Remaining Time -:-
    1x

      Player Code Example

      <!--Initialize the player and Nuevo plugin-->
      <script>
      	var player = videojs('player_2)';
      	player.nuevo({ 
      		contextUrl: 'https://www.wikipedia.org',
      		contextText: 'The Free Ecyclopedia',
      		contextIcon: 'https://www.wikipedia.org/static/favicon/wikipedia.ico',
      	}); 
      </script>