tags:

views:

283

answers:

2

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
A: 

This doesn't do anything. Or, it gets over-rided by the theme.

Jonathan