I am working on one android app using jQuery mobile and phonegap. I have used jQuery mobile popup to show popup in app. Issue is when I opens popup then it is highlighted by transparent purple box which I don't want. How to remove this transparent purple box?
Screenshot link: https://docs.google.com/file/d/0BwIDqcJXVfuAdm96SHc1c0liT1U/edit?usp=docslist_api
HTML for popup:
<div data-role="popup" id="popupCloseRight" class="ui-content" style="max-width:280px">
<a href="#" data-rel="back" class="ui-btn ui-corner-all ui-shadow ui-btn-a ui-icon-delete ui-btn-icon-notext ui-btn-right">Close</a>
<p>Please enter list name.</p>
</div>
JavaScript to open popup: $('#popupCloseRight').popup('open');