Unneeded wrapping of jQuery object
This commit is contained in:
@@ -325,9 +325,12 @@ $(document).ready(function() {
|
|||||||
|
|
||||||
PMA_ajaxShowMessage();
|
PMA_ajaxShowMessage();
|
||||||
|
|
||||||
$.get($(this).attr('href'), $(this).serialize() + '&ajax_request=true', function(data) {
|
$anchor = $(this);
|
||||||
$("#sqlqueryresults").html(data);
|
|
||||||
$("#sqlqueryresults").trigger('appendAnchor');
|
$.get($anchor.attr('href'), $anchor.serialize() + '&ajax_request=true', function(data) {
|
||||||
|
$("#sqlqueryresults")
|
||||||
|
.html(data)
|
||||||
|
.trigger('appendAnchor');
|
||||||
}) // end $.get()
|
}) // end $.get()
|
||||||
})//end Sort results table
|
})//end Sort results table
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user