Fancybox - Updating size of fancybox with Iframe content?

后端 未结 4 914
难免孤独
难免孤独 2020-12-17 02:02

On my site I open up a fancybox containing IFRAME content. Is it possible to update the size of the fancybox when a link is clicked within it?

For example, I have it

4条回答
  •  抹茶落季
    2020-12-17 03:00

    This works for me on fancyBox v2.1.4

    $('#myid').fancybox({
        closeBtn    : false,
        padding     : 0,
        preload     : true,
        onUpdate    : function(){
            $.fancybox.update();
        }
    });
    

提交回复
热议问题