0
I created a page with a video set in the resolution and layout I want, but when receiving a double click it enters mode fullscreen, I’d like to disable that. I used the script:
<script>
$(document).ready(function(){
$("*").dblclick(function(e){
e.preventDefault();
});
});
</script>
But even so the browser (Chrome) accepts double click and puts the video in fullscreen.
Sorry for the delay, I implemented your help, it worked very well. Thank you.
– dib