jquerypluginsmodal-dialogfullscreen

Jquery Modal/Dialog with Fullscreen option


I am looking to use a Jquery modal/dialog plugin for my site to view content.

I am currently using Thickbox which works well but it does not have a fullscreen option, when I say fullscreen I mean fill the whole browser window.

Does anyone know of any good modal/dialog plugins which can expand fullscreen?

Cheers

Eef


Solution

  • Thickbox should support what you're attempting to do out of the box. See this forum thread, wherein they discuss initializing the TB's size:

    TB_height = $(window).height();
    

    And alternatively specifying a resize event handler to window to update a TB that is already being displayed.

    If you're looking for an alternative plugin, I'd suggest looking into BlockUI, as the CSS for its overlay is easily configurable, and you should be able to accomplish a full-size dialog by using 100% for the height and width properties.