Move common code into a function

This commit is contained in:
Marc Delisle
2011-04-24 08:56:54 -04:00
parent 24e05e1cb2
commit 8f16bfbc53
6 changed files with 23 additions and 37 deletions

View File

@@ -60,10 +60,7 @@ $(document).ready(function() {
$("#sqlqueryresults").empty();
var msgbox = PMA_ajaxShowMessage(PMA_messages['strSearching']);
// add this hidden field just once
if (! $search_form.find('input:hidden').is('#ajax_request_hidden')) {
$search_form.append('<input type="hidden" id="ajax_request_hidden" name="ajax_request" value="true" />');
}
PMA_prepareForAjaxRequest($search_form);
$.post($search_form.attr('action'), $search_form.serialize(), function(response) {
if (typeof response == 'string') {