Skip to content

Instantly share code, notes, and snippets.

@bittersweetryan
Created September 4, 2012 02:45
Show Gist options
  • Save bittersweetryan/3615979 to your computer and use it in GitHub Desktop.
Save bittersweetryan/3615979 to your computer and use it in GitHub Desktop.
new cleanDiv function
var cleanDiv = function(){
return $.Deferred(function(dfd){
//otherwise fade the dive out before removing the children
$tweetDiv.fadeOut('slow',function(){
$tweetDiv.children().remove();
dfd.resolve();
});
}).promise();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment