Translation update done using Pootle.
[phpmyadmin/dkf.git] / js / db_search.js
blob8a0474ff2a7cbe273fc34196a903cf76b4439e95
1 /**
2  * @fileoverview    JavaScript functions used on Database Search page
3  * @name            Database Search
4  *
5  * @requires    jQuery
6  * @requires    js/functions.js
7  */
9 /**
10  * AJAX script for the Database Search page.
11  *
12  * Actions ajaxified here:
13  * Retrieve result of SQL query
14  */
16 $(document).ready(function() {
18     /**
19      * Ajax Event handler for retrieving the result of an SQL Query
20      *
21      * @uses    PMA_ajaxShowMessage()
22      */
23     $("#db_search_form").live('submit', function(event) {
24         event.preventDefault();
26         PMA_ajaxShowMessage(PMA_messages['strSearching']);
28         $(this).append('<input type="hidden" name="ajax_request" value="true"');
30         $.get($(this).attr('action'), $(this).serialize() + "&submit_search=" + $("#buttonGo").val(), function(data) {
31             $("#searchresults").html(data);
32         }) // end $.get()
33     })
34 }, 'top.frame_content'); // end $(document).ready()