Posts

Showing posts with the label YUI

YAHOO UI

What is YUI? The YUI Library is a set of utilities and controls, written with JavaScript and CSS, for building richly interactive web applications using techniques such as DOM scripting and AJAX. Why YUI? Its free. It provides Cross browser compatibility Readily Available Widget/Controls Readily Available Utilities. Modular approach allows to include only the part that we need. What are the available YUI Components? (1) YUI Core The YAHOO Global Object (base requirement for all YUI components)           Example: YAHOO.namespace(“dj”); DOM Collection (convenience methods for DOM interactions)           Example: YAHOO.util.Dom.get(“myElementId”); Event Utility (event normalization and custom events)           Example: YAHOO.util.Event.onDomReady(myfunction); (2) YUI CSS Tool CSS Reset (neutralizes browser CSS styles) CSS Base (applies consistent style founda...