jQuery - Fancybox: But I don't want scrollbars!

前端 未结 24 2020
醉话见心
醉话见心 2020-12-15 17:37

I am using jQuery Fancybox for a popup registration form here

I would like the form to come up at the size of 450px by 700px but no matter what I set the height and

24条回答
  •  盖世英雄少女心
    2020-12-15 17:37

    Add iframe: { scrolling : 'no' } as option

    example

    $.fancybox({
    href: 'yourUrl.html',
    width: 800,
    height: 415,
    autoSize: false,
    type : 'iframe',
    iframe: {
    scrolling : 'no',
    preload   : true
    }});
    

提交回复
热议问题