﻿var to = setTimeout("TimedOut()", 240000); function TimedOut() { $.ajax({ type: "POST", url: "ping.ashx", data: "{}", contentType: "application/json; charset=utf-8", dataType: "json", success: function(msg) { to = setTimeout("TimedOut()", 240000) } }) }
