Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
Apple

iPad Review 750

This weekend saw the delivery of iPads into hundreds of thousands of filthy hands. I managed to get my hands on a 32GB unit and put it through its paces for a battery charge and a half, and wanted to take a few minutes to share some notes with you. But if you don't care to read the whole review, let me give you a hint: I am typing this review on my laptop.

Comment Re:Ajax Q&A... the real one (Score 1) 541

I don't understand why it's being called Ajax either; Ajax is an *approach* (like "environmentally friendly"), not a *thing*.

Anyway, you don't need to save the request object in a global variable. Assign a closure to onreadystatechange:

. // request is an XmlHTTPRequest object

request.onreadystatechange = function() {
if (request.readyState == 4 && request.status ==200) { // do something to request
}
};

Slashdot Top Deals

Disraeli was pretty close: actually, there are Lies, Damn lies, Statistics, Benchmarks, and Delivery dates.

Working...