Click here to Skip to main content
15,881,380 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi..

I'm using KnockOut js in Chat functionality. In the left panel, Users will be displayed and on clicking the user, Chat conversation will be displayed in the Right Panel. Now, My Problem is after few clicks, the browser is getting over loaded and popping out the page unresponsive error.

Is there anything like Clear Cache(Garbage Collection) kind of thing for browser?

I've tried aborting the old request, if any new request was made by using this code.

JavaScript
if (xhr != null) {
            xhr.abort();
            xhr = null;
        }



Is there anything I can do with Threading in Javascript?
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900