Complete one of the Case Projects on page 629. (You may choose a different project as long as it follows the guidelines of one of the projects listed for the chapter.)
You may encounter a problem with FireFox to get the CData to work.
// to fix bug in ff when reading CData
var element = newsItems[i].getElementsByTagName("description")[0]
var ie = (typeof window.ActiveXObject != 'undefined');
var returnText;
if(ie)
{
if(element.hasChildNodes)
{
curDesc = element.childNodes[0].nodeValue;
}
}
else
{
if(element.hasChildNodes)
{
curDesc = element.childNodes[1].nodeValue;
}
}
Be sure to update your index page to link to your project. Be sure to test your links after uploading your project.
If any of these steps have errors let me know through email so that I can make the correction