Skip to content Skip to sidebar Skip to footer

Using Jquery Fancybox Auto Height Within An Iframe?

I'm using Fancybox iframe form. form height 350px when finish form the result is just two lines. could any one tell me how to make auto height for the window my javascript code is

Solution 1:

Try giving the iframe a matching height and width (see below), but more importantly give the finish form screen a firm height and width as well, if needed by wrapping it in a DIV tag.

<iframe style="height: 350px; width 350px;" />
...
<div style="height: 350px; width 350px;">
<form>
Thank you for sending to a friend.
</form>
</div>

Post a Comment for "Using Jquery Fancybox Auto Height Within An Iframe?"