How to remove page background for Jquery Mobile Dialog?
问题 The dialog itself only occupies about 10% of the page and I wanted to remove or turn the dialog's page background into transparent so that the previous page will still be visible. This is the js that calls the dialog: $.mobile.changePage('#popdiv',{transition:'slide', role:'dialog'}); and this is the div <div data-role="page" id="popdiv" data-role="page" data-theme="e"> <div data-role="content"> <h1>Congrats!</h1> </div> </div> I tried using custom css but it doesn't seem to change anything