Does anyone know how to resize the jQuery Fancybox during runtime?
When initializing the fancybox I can do this:
$(\"tag\").fancybox({ \'frameWidth\
Alan's solution is incomplete because the box is no longer centered on the screen after modifying the size (at least with the latest jquery and fancybox versions).
So, the complete solution would be:
$("#fancy_outer").css({'width': '500px', 'height': '500px'}); $("tag").fancybox.scrollBox();