Does anyone know how to resize the jQuery Fancybox during runtime?
When initializing the fancybox I can do this:
$(\"tag\").fancybox({ \'frameWidth\
If Fancybox was part of jQuery UI, you'd do it like this:
$("tag").fancybox.option('frameWidth', 500);
But as it doesn't seem to provide such a method, you need to set the CSS directly:
$("#fancy_outer").css({'width': '500px', 'height': '500px'});