Tanny O'Haley's WeblogThoughts on life, family, programming.Domino Directory Type Ahead- May 27, 2008 Around December 2006 I read a tip on Julian Robichaux's site about Google Suggest-type Lookups In Notes code he had written. I downloaded the code and thought that I could make a few improvements. I changed the code to: Use Object Literal Notation. Added highlightingauto complete support. Changed to code to dynamically create script elements for data instead of using the XML HTTP request object. Using script files gets rid of cross domain scripting security issues. Supports multiple input.http://tanny.ica.com/ICA/TKO/tkoblog.nsf/dx/domino-directory-type-ahead DOMContentLoaded for Browsers, Part V- May 26, 2008 For those of you that don't know what the DOMContentLoaded event can do for you, here's a brief description. The DOMContentLoaded event allows you to add behavior or change the HTML of a page after the HTML has loaded and before the onload event which happens after the complete page, including images has loaded. This allows you to add menu, tree behavior, AJAX functionality or anything else without having to wait for all items on a page to load. You may have experienced the need for a...http://tanny.ica.com/ICA/TKO/tkoblog.nsf/dx/domcontentloaded-for-browsers-part-v |