How could the jQuery modal overlay (dark transparent background) be made 100% transparent so that it doesn’t show at all on the screen?
+1
A:
You can set the Opacity
option to 0.
$("#yourdialog").dialog({
modal: true,
overlay: {
opacity: 0,
background: "black"
}
})
Kindness,
Dan
Daniel Elliott
2009-12-02 07:02:08