I created a page with a video set to the resolution and layout that I want, but when I double-click it it goes into fullscreen mode, I would like to disable it. I used the script :
<script>
$(document).ready(function(){
$("*").dblclick(function(e){
e.preventDefault();
});
});
</script>
But even so, the browser (Chrome) supports double-clicking and places the video in fullscreen .