24.10.2014 Views

Hafez Rouzati

Hafez Rouzati

Hafez Rouzati

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

AJAX<br />

var url = 'http://twitter.com/firehose';<br />

var req = new XMLHttpRequest();<br />

req.onReadyStateChange = function () {<br />

! if (req.readyState === 4) {<br />

! ! ! var data = req.responseText;<br />

! ! ! // process the data<br />

! ! }<br />

}<br />

req.open('GET', url, true);<br />

req.send(null);

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!