Skip to content

Instantly share code, notes, and snippets.

@joecorcoran
Created September 3, 2010 08:15
Show Gist options
  • Save joecorcoran/563595 to your computer and use it in GitHub Desktop.
Save joecorcoran/563595 to your computer and use it in GitHub Desktop.
function DoTooMuchStuff(num) {
$('p#mypar_'+num).slideUp(400).remove();
$('h3#myheading_'+num).html('No records found');
context.trigger('updateStoredRecords', { remove: num });
var delimiter = ($('ul#removed > li').size() > 0) ? ', ' : '';
$('ul#removed').append($('<li/>').html(delimiter+GetName(num)));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment