Skip to content

Instantly share code, notes, and snippets.

@mikedfunk
Created October 21, 2011 19:48
Show Gist options
  • Save mikedfunk/1304759 to your computer and use it in GitHub Desktop.
Save mikedfunk/1304759 to your computer and use it in GitHub Desktop.
loading_in
// --------------------------------------------------------------------------
/**
* loading_in function.
*
* @return void
*/
function loading_in($this)
{
if ($this !== undefined)
{
var the_html = $this.html();
$this.data('the_content', the_html);
$this.addClass('disabled');
$this.html('Loading...');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment