Dialog overlay background opacity in IE

Dialog overlay background opacity in IE

Hi,

I set up a modal dialog component on my webpage that works fine with all browsers except IE ! what a surprise !

the problem is that the background that should have an opacity of 0.5, is totally opaque in IE. I really don't know why. Below is the code of the component


  1. $('#ficheResume').dialog({
                               title: "Résumé de l'offre",
                               autoOpen: false,
                               modal: true,
                               minWidth: 400,
                               minHeight: 300,
                               width: 400,
                               buttons: {    "Fiche complète (pdf)": function() {
                                    var criteres = new Array();
                                    criteres[0] = "all";
                                    var offr = new Array();
                                    offr[0] = offreSelectionnee;
                                    $.post("php/prepare_pdf.php",
                                            { "listeOffres":offr, "criteres":criteres },
                                            function (data) {
                                                if (data=="1") window.open('php/export_pdf.php');
                                            });
                               } },
                               close: function () {
                                   offreSelectionnee = -1;
                               }
                           });




















Does someone have an idea about solving this problem ?

Thanks !









    • Topic Participants

    • jekif