Skip to content

Instantly share code, notes, and snippets.

@JDMcKinstry
Created February 27, 2012 23:35
Show Gist options
  • Save JDMcKinstry/1927918 to your computer and use it in GitHub Desktop.
Save JDMcKinstry/1927918 to your computer and use it in GitHub Desktop.
(function($) {
if ( !$.cursorWait ) {
$.extend({
cursorWait: function(bool_value) {
document.body.style.cursor = bool_value ? 'wait' : 'false';
}
});
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment