wedge Intro
* www.flickr.com—show
* Sweet Home Country Grammer by Mei-Lwun
* Flash through Assignment #2
* Go over questions about Assignment #3.
wedge Accessing CSS with Javascript and DOM
wedge There is a slight difference between accessing DOM style parameters than there is in defining CSS.
wedge The syntax is slightly different
* for example text-align -> textAlign
wedge example_00
* Changing float style with Javascripot
* www.ics.uci.edu—example_00.html
wedge XMLHttpRequestObject
wedge Background HTTP is a request/response protocol
* response is text of some sort. XML, raw text, etc.
wedge show Universal code snippet (example_01.html)
* sendRequest sets the request in motion and returns control immediately while we do other stuff.
wedge callback function is the heart of event-driven U/Is
* examples are window.onload
wedge req.onreadystatechange
* var READY_STATE_UNINITIALIZED = 0;
var READY_STATE_LOADING = 1;
var READY_STATE_LOADED = 2;
var READY_STATE_INTERACTIVE = 3;
var READY_STATE_COMPLETE = 4;

wedge Loading HTML with AJAX calls
* www.ics.uci.edu—example_01.html
* www.ics.uci.edu—example_02.html