2 * JavaScript for testing the browser of AJAX-compatiblity
3 * --------------------------------------------------------------------
8 * --------------------------------------------------------------------
9 * Copyright (c) 2003 - 2009 by Roland Haeder
10 * Copyright (c) 2009 - 2012 by Mailer Developer Team
11 * For more information visit: http://mxchange.org
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
29 // Everthing starts with 3 seconds by default
33 var element = document.getElementById('counter');
35 // Holding the interval
39 function ajaxTestCounter () {
40 // Is there element set?
41 if (element !== null) {
42 // Yes, then set the new counter value
43 element.innerHTML = counter;
46 // Is there reached zero?
49 clearInterval(ajaxTest);
51 // Try to open AJAX window
53 // Is the test passed?
54 displayTestWindow('install', '#ajax_installer');
56 // Exception caught (very bad, AJAX is not working)
66 function initAjaxTest () {
68 ajaxTest = window.setInterval('ajaxTestCounter()', 1000);