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 * Set a parameter for all Ajax queries made on this page. Don't let the
18 * web server serve cached pages
25 * Ajax event handler for Table Search
27 * @uses PMA_ajaxShowMessage()
29 $("#tbl_search_form").live('submit', function(event) {
30 event.preventDefault();
32 PMA_ajaxShowMessage(PMA_messages['strSearching']);
34 $(this).append('<input type="hidden" name="ajax_request" value="true" />');
36 $.post($(this).attr('action'), $(this).serialize(), function(data) {
37 $("#searchresults").html(data);
40 }, 'top.frame_content'); // end $(document).ready()