diff --git a/jquery.blockUI.js b/jquery.blockUI.js index 90ce5d6..27233ff 100644 --- a/jquery.blockUI.js +++ b/jquery.blockUI.js @@ -291,8 +291,11 @@ // layer2 is the overlay layer which has opacity and a wait cursor (by default) // layer3 is the message content that is displayed while blocking var lyr1, lyr2, lyr3, s; - if (msie || opts.forceIframe) - lyr1 = $(''); + if (msie || opts.forceIframe) { + lyr1 = $(''); + if (opts.iframeSrc) + lyr1.attr("src", opts.iframeSrc); + } else lyr1 = $('
');