I am making a Native App (for Android, IOS, BB10 & BB7) Using
jquery.mobile-1.2.1.min.css
jquery-1.8.3.min.js
jquery.mobile-1.2.1.min.js
as well as cordova.js
in my application.
My code seems
<script> document.addEventListener("deviceready", loaded, false); function loaded(){ alert("device is ready"); } function MamWorkDone(){ navigator.notification.confirm("Are you sure you want to exit ?", onConfirm, "RoomsTonite", "Yes,No"); function onConfirm(button) { } } </script> <body> <div data-role="page"> <div data-role="header" > <h1>Page Title</h1> </div> <div data-role="content"> <a href="#" data-role="button" id="btn_id" data-inline="true" onclick="MamWorkDone();" >Clear the Code</a> </div> <div data-role="footer"> <h4>Page Footer</h4> </div> </div> </body>
this code may display a confirmation dialog that looks like 
Here, my Confirmation dialog box goes against a white background. But I want the Confirm dialog box to be black and the text color is white, not black? Please help me solve this problem? Thanks at Advance
source share