﻿function setTime() {
    //document.getElementById("timer").innerHTML = new Date().toTimeString();
    var qs = "action=doPing";
    $.ajax({
        type: "POST",
        url: "OrderWiz.ashx",
        data: qs,
        contentType: "application/x-www-form-urlencoded", //какие данные посылаются
        dataType: "text",                                 //какие возвращаются
        async: true,
        success: function Success(data) {
            ; //document.getElementById("timer").innerHTML = data;
        },
        error: function (x, e) {
            $("#timer").html(e);
        }
    });
}
window.setInterval(setTime, 30000);

