4
votes
Stack overflow error when using JQuery/ASP.NET for simple ajax chat
Your javascript refreshChat function is recursively calling itself. Change the code to:
function refreshChat()
{
$.get("messages.aspx", function(data) { …
0
votes
What is AJAX, really?
AJAX stands for asynchronous JavaScript and XML, though it doesn't always deal with XML data anymore. Essentially it boils down to using the XMLHttpRequest object through JavaScript running on the …
