I have a link, after click this link, a modal was displayed. I used ModalDialog with code:
$(document).ready(function() {
    //linkTTT is link id
        $("a#linkTTT").click(function() {
        //content is id of div that contains content
            $("#content").modal({ onOpen: function(dialog) {
                dialog.overlay.fadeIn('slow', function() {
                    dialog.data.hide();
                    dialog.container.fadeIn('slow', function() {
                        dialog.data.slideDown('slow');
                    });
                });
            }
            });
         }); //end a click
    });
Content're contained in a , it includes two tables that containt text and some images.
This application run well in Firefox 3+, Chrome and IE8.
Images here: [http://bian.vn/normal.png]
I'm having problem with IE 6 and IE 7. In IE 6:
Images here: [http://bian.vn/IE6.png]
In IE 7, content's cleaned after is loaded...
Images here: [http://bian.vn/IE7.png]
You can see screencast at link text
Let me know your answer about this problem Thanks a lot.