Modal window from within WordPress admin

How can get a modal window to work from within the wordpress admin?

I want to create a modal window that will work from a meta box within the wp-admin.

Read More

Any ideas?

Related posts

Leave a Reply

2 comments

  1. To use Thickbox for inline modal windows you can use the following code.

    <?php add_thickbox(); ?>
    
    <a href="#TB_inline?width=600&height=550&inlineId=modal-window-id" class="thickbox">Modal Me</a>
    
    <div id="modal-window-id" style="display:none;">
        <p>Lorem Ipsum sit dolla amet.</p>
    </div>
    

    http://codex.wordpress.org/ThickBox