On May 6, 9:34 am, Adam <[EMAIL PROTECTED]> wrote:
> Is it possible to show an external webpage inside of a blockUI modal
> dialog?  I'd like to call another page via ajax and populate the
> dialog instead of using a reference to a hidden div, etc.

You bet::

    $('someLink').click(function(){
        $.blockUI({
            message: $('<div></div>').load($(this).attr('href'))
        });
        return false;
    });

Reply via email to