Reputation: 1
I need to resize from 800x300 to 700x400 when a user clicks a link within a Fancybox iframed page.. but had no success yet. Please post as much code (inc. html) please... if possible :)!
Thanks, Ed
Upvotes: 0
Views: 1011
Reputation: 11
Try this:
parent.$('.fancybox-inner').height(400);
parent.$('.fancybox-inner').width(700);
Upvotes: 1