Search Results

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) { …
3
votes

Checkbox and JQUERY: “is checked” always FALSE

could it be because you are comparing the value of the checked property to a string rather than a boolean and using the === operator which compares both value and type? …