Edward
Edward

Reputation: 1

Resize Parent Fancybox from within iframe link

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

Answers (1)

Maximo Herreta
Maximo Herreta

Reputation: 11

Try this:

parent.$('.fancybox-inner').height(400);
parent.$('.fancybox-inner').width(700);

Upvotes: 1

Related Questions