Setting resize function for Fancybox V2

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
toplisek
Forum Commoner
Posts: 31
Joined: Tue Apr 11, 2006 1:23 pm

Setting resize function for Fancybox V2

Post by toplisek »

How to set (automatic) resized function with content inside V2?

.fancybox({
'width' : '98%',
'height' : '98%',
type: 'iframe',
autoSize : false,
beforeLoad : function() {
this.width = parseInt(this.href.match(/width=[0-9]+/i)[0].replace('width=',''));
this.height = parseInt(this.href.match(/height=[0-9]+/i)[0].replace('height=',''));
}
});
Post Reply