-
-
Save evanpurkhiser/11362409 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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