3
votes
In AJAX how to retrive variable from inside of onreadystatechange = function ()
The following code assumes that the ajax-request is synchronous:
function popup(){
ajaxFunction();
alert(MyVariable);
}
But since synchronous requests are …
2
votes
Detect from browser if specific application is installed
If you want to detect with javascript inside the browser, you can probably use the collection "navigator.plugins". It works with Firefox, Opera and Chrome but unfortunately not with IE.
Up …
2
votes
Is there a best practice for generating html with javascript
If you absolutely have to concatenate strings, instead of the normal :
var s="";
for (var i=0; i < 200; ++i) {s += "testing"; }
use a temporary array:
…
0
votes
Implementing a self resetting XMLHttpRequest object
You probably shouldn't use XMLHTTPRequest at all for this.
Several years ago, long before XMLHTTPRequest was known, I created a chat program to be used in a normal browser. The window with …
2
votes
What is the problem with this ajax(with prototype)?
This is a long shot, but without more information and seeing more of your code I have to ask this so you could rule it out: Could it have something to do with the user double-clicking on the link a …
