On 8/19/05, adrian suri <[EMAIL PROTECTED]> wrote:
> Hi
> 
> I am writting a colour highlighting scheme for my fav editor
> does anyone know where I can get a full list of javascript kewords
> function +
> methods from
> 

What you're looking for is a DOM reference.  Most javascript functions
with regards to CSS are something like:

document.getElementById("element").style.<css style> = <value>;

There are some style references that aren't directly the same, such as:

CSS:  background-position
DOM:  backgroundPosition

CSS: z-index
DOM: zIndex

As far as a reference, I recommend that you google for DOM and CSS
together, or visit the w3:
http://www.w3.org/TR/DOM-Level-2-Style/

HTH,
Jon
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to