<!-- Javascript -->
<script>
var h = $(window).height();
var w = $(window).width();
$(function() {
$( "#dialog-1" ).dialog({
autoOpen: false,
height: h-(h*25/500),
width: w-(w*25/500),
});
$( "#opener" ).click(function() {
$( "#dialog-1" ).dialog( "open" );
});
});
</script>
</head>
<body>
<!-- HTML -->
<iframe id = "dialog-1" src="<?php echo 'https://lien vers le pdf; ?>" type = "application/pdf" style='border:none;'> </iframe>
<button id = "opener">Open Dialog</button>
</body>
le pdf ne s'ouvre pas quand quand la fenêtre modale s'affiche. Aider moi s'il vous plais.