You are here: Reference > JavaScript > client-side > style handling > properties > length (style, currentStyle, ...)
length property (style, currentStyle, ...)
9 | ||||
Returns the number of properties that have been set in the current style object.
Syntax:
You can find the related objects in the Supported by objects section below.
This property is read-only.
Possible values:
Integer that represents the number of properties.
Default: this property has no default value.
Example HTML code 1:
This example illustrates the use of the length property:
|
||||
<head> <script type="text/javascript"> function GetBodyStyleLength () { alert (document.body.style.length); alert (document.body.style.cssText); } </script> </head> <body style="color:red; background-color:#e0a0a0;"> <button onclick="GetBodyStyleLength ();">Get the style length of the body</button> </body> |
||||
|
||||
Did you find this example helpful?
|
Supported by objects:
CSSStyleDeclaration, htmlElement.currentStyle, htmlElement.style
HTML elements:
a, abbr, acronym, address, applet, area, b, base, basefont, bdo, bgsound, big, blink, blockquote, body, br, button, caption, center, cite, code, col, colgroup, comment, dd, del, dfn, dir, div, dl, dt, em, embed, fieldset, font, form, frame, frameset, h1, h2, h3, h4, h5, h6, head, hr, html, i, iframe, img, input:button, input:checkbox, input:file, input:hidden, input:image, input:password, input:radio, input:range, input:reset, input:search, input:submit, input:text, ins, isindex, kbd, keygen, label, legend, li, link, listing, map, marquee, menu, meta, nobr, noframes, noscript, object, ol, optgroup, option, p, param, plaintext, pre, q, rt, ruby, s, samp, script, select, small, span, strike, strong, style, sub, sup, table, tbody, td, textarea, tfoot, th, thead, title, tr, tt, u, ul, var, wbr, xml, xmp
Related pages:
User Contributed Comments