2
我正在使用jquery插件ColorBox。以編程方式更改ColorBox的寬度/高度onClick
我有一個包含多個物品清單的頁面。每個列表都附有一個ColorBox。
$("a.modalButton").each(function(){
$(this).colorbox({
width:"933px",
height:"720px",
iframe:true,
onComplete:function(){
//remove the text from the close button
//wasn't sure how else to do that
$('#cboxClose').html('');
}
});
});
在每個ColorBox窗口中都有一個「email me」按鈕。當它被點擊時,我用窗體替換窗口中的html內容以通過電子郵件發送列表。
我想窗口調整大小以適應形式單擊此按鈕