Problem display in IE 7 & IE 6 - simplemodal-1.3.4 and Jquery 1.4.2
Posted
by qWolf
on Stack Overflow
See other posts from Stack Overflow
or by qWolf
Published on 2010-04-08T04:31:26Z
Indexed on
2010/04/08
4:33 UTC
Read the original article
Hit count: 561
jquery-plugins
|simplemodal
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.
© Stack Overflow or respective owner