Skip to content

Instantly share code, notes, and snippets.

@evanpurkhiser
Forked from RSquaredSoftware/gist:11362356
Created April 28, 2014 05:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evanpurkhiser/11362409 to your computer and use it in GitHub Desktop.
Save evanpurkhiser/11362409 to your computer and use it in GitHub Desktop.
var last_details = $();
$('body').on('click','.info', function (e) {
// Don't let the page reload
e.preventDefault();
last_details.remove();
last_details = $('<div>').html(content_from_ajax)
$('#'+e.target.id+'Row').after(last_details);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment