Skip to content

Instantly share code, notes, and snippets.

@ikawka
Created November 5, 2013 02:12
Show Gist options
  • Select an option

  • Save ikawka/7312704 to your computer and use it in GitHub Desktop.

Select an option

Save ikawka/7312704 to your computer and use it in GitHub Desktop.
Add overlay to JQueryMobile Loader and disable functions below the loader.
Add this style
<style type="text/css">
.ui-loader-background {
background: rgba(0, 0, 0, 0.5);
width:100%;
height:100%;
top:0;
margin: 0;
display:none;
position: fixed;
z-index:99;
}
.ui-loading .ui-loader-background {
display:block;
}
</style>
Then add this to the end of the BODY
<div class="ui-loader-background"> </div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment