This is probably more of a question for the IFRAME resizing script than the Form Wizard. Is there a function within the later to reflow/calculate the height of the page when the page's height changes, as is the case when the user navigates to a different "tab" within the Form Wizard? If there is, you would call that function inside the onpagechangestart() event handler of Form Wizard, which lets you run code whenever the user changes "tab". For example:
Code:
var myform=new formtowizard({
formid: 'feedbackform',
persistsection: true,
revealfx: ['slide', 500],
onpagechangestart:function($, i, $fieldset){
recaliframeheight() //some function to call to recal iframe height
}
})
Bookmarks