Skip to content

Instantly share code, notes, and snippets.

@signalpoint
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save signalpoint/c6f8b1895661f655898b to your computer and use it in GitHub Desktop.
Save signalpoint/c6f8b1895661f655898b to your computer and use it in GitHub Desktop.
jQuery Mobile "Toast"
setInterval(function() {
$.mobile.loading('show', {
textVisible: true,
html: '<div style="text-align: center;"><h2>Saved!</h2></div>'
});
setTimeout(function() {
$.mobile.loading().hide();
}, 420);
}, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment