Click here to Skip to main content
15,892,809 members
Articles / Web Development / HTML

AWUI - a simple web user interface library with AJAX support

Rate me:
Please Sign up or sign in to vote.
4.33/5 (5 votes)
26 Jul 2007CPOL4 min read 47.9K   382   35  
An article on creating a custom JavaScript controls set and cross-browser support library
// AWUI library useful constants
if (typeof(AWUI) == "undefined") alert ("AWUI is not available");

//	keyboard codes
AWUI.KEY_TAB = 9;
AWUI.KEY_ENTER = 13;
AWUI.KEY_ESC = 27;
AWUI.KEY_LEFT = 37;
AWUI.KEY_UP = 38;
AWUI.KEY_RIGHT = 39;
AWUI.KEY_DOWN = 40;

AWUI.KEY_SHIFT = 16;
AWUI.KEY_CTRL = 17;
AWUI.KEY_ALT = 18;

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Belarus Belarus
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions