Problem with Dialog in Chrome
Hi All
I am using the Dialog widget in my application using the following command:
- var opts = {
- title: "My Dialog",
- modal: true,
- height: 700,
- width: 800
- };
-
- odialog = $('<div id="newdivid"><iframe width="100%" height="100%" id="randomid"></iframe></div>').dialog(opts);
- $( "#randomid" ).attr("src",curl);
In the above code, "randomid" and "newdivid" are randomly generated.
The dialog opens properly in IE with the correct width and height. But doesnt come correctly in Chrome.
What could be the problem?
Thanks in advance
Pinaki