responsive way horizontally, but not vertically. When use fancybox in order to call img it works, but not when it's for iframe.
<script type="text/javascript">
$(document).ready(function(){
$('.fancybox').fancybox({
openEffect: 'elastic',
closeEffect: 'elastic',
prevEffect: 'fade',
nextEffect: 'fade',
fitToView: true, //
maxWidth: "90%", //
type: 'iframe',
scrolling: 'no',
iframe : {
scrolling : 'no'
}
});
});
</script>