2 * @fileoverview JavaScript functions used on tbl_select.php
5 * @requires js/functions.js
9 * Ajax event handlers for this page
11 * Actions ajaxified here:
14 $(document
).ready(function() {
17 * Ajax event handler for Table Search
19 * @uses PMA_ajaxShowMessage()
21 $("#tbl_search_form").live('submit', function(event
) {
22 event
.preventDefault();
24 PMA_ajaxShowMessage(PMA_messages
['strSearching']);
26 $(this).append('<input type="hidden" name="ajax_request" value="true" />');
28 $.post($(this).attr('action'), $(this).serialize(), function(data
) {
29 $("#searchresults").html(data
);
32 }, 'top.frame_content'); // end $(document).ready()