Unneeded wrapping of jQuery object

This commit is contained in:
Marc Delisle
2011-02-05 07:46:27 -05:00
parent 3be1863606
commit 8b72097fb0

View File

@@ -325,9 +325,12 @@ $(document).ready(function() {
PMA_ajaxShowMessage();
$.get($(this).attr('href'), $(this).serialize() + '&ajax_request=true', function(data) {
$("#sqlqueryresults").html(data);
$("#sqlqueryresults").trigger('appendAnchor');
$anchor = $(this);
$.get($anchor.attr('href'), $anchor.serialize() + '&ajax_request=true', function(data) {
$("#sqlqueryresults")
.html(data)
.trigger('appendAnchor');
}) // end $.get()
})//end Sort results table