Skip to content

Instantly share code, notes, and snippets.

@enlacee
Last active August 29, 2015 14:17
Show Gist options
  • Save enlacee/e732b25b4123d163073c to your computer and use it in GitHub Desktop.
Save enlacee/e732b25b4123d163073c to your computer and use it in GitHub Desktop.
load jquery mobile for tiny senconds
setTimeout(function(){
$.mobile.loading('show');
},100);
$( "header" ).fadeOut( 1, function() {
setTimeout(function(){
$( "header" ).fadeIn();
$.mobile.loading('hide');
},2000);
});
$( window ).on( "orientationchange", function( event ) {
setTimeout(function(){
$.mobile.loading('show');
},100);
$( "header" ).fadeOut( 1, function() {
setTimeout(function(){
$( "header" ).fadeIn();
$.mobile.loading('hide');
},2000);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment