Skip to content

Instantly share code, notes, and snippets.

@nickknissen
Created May 28, 2013 11:33
Show Gist options
  • Save nickknissen/5662124 to your computer and use it in GitHub Desktop.
Save nickknissen/5662124 to your computer and use it in GitHub Desktop.
$('.statrow').each(function() {
var statId = this.id;
window.setTimeout(function() {
deleteStat(statId);
}), 3
});
function deleteStat(id) {
$.get('https://www.stathat.com/stats/'+id+'/deletetotrash', function(data) {
console.log('deleted: '+id);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment