Archive for July, 2007

Web hosting resellers - JavaScript Programmer’s Reference aTransformation N myJSSTag.textTransform JavaScript syntax:

Friday, July 27th, 2007

JavaScript Programmer’s Reference aTransformation N myJSSTag.textTransform JavaScript syntax: N myJSSTag.textTransform = aTransformation CSS syntax: Argument list: A character glyph transform The JSSTag.textTransform property corresponds to the text-transform CSS property. This property provides a means to change the glyphs that are used without affecting the underlying source text. The following values are permitted: . capitalize . uppercase . lowercase . none The default value is “none”. This value is inherited from its parent container element. Warnings: . Deprecated for any further use. This was available only in Netscape 4.0 and is completely removed from Netscape 6.0. text-transform: aTransformation See also: style.textTransform JSSTag.verticalAlign (Property) Control over the vertical alignment of the object. Availability: CSS level 1 JavaScript 1.2 Netscape 4.0 Deprecated Property/method value type: String primitive JavaScript syntax: N myJSSTag.verticalAlign N myJSSTag.verticalAlign = anAlignment CSS syntax: vertical-align: anAlignment HTML syntax: <... VALIGN="..."> Argument list: anAlignment A vertical alignment control 1268

J JSSTag.textIndent (Property) JSSTag.textIndent (Property) The indentation (Web design software)

Thursday, July 26th, 2007

J JSSTag.textIndent (Property) JSSTag.textIndent (Property) The indentation of text in the object. CSS level 1 JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: String primitive JavaScript syntax: myJSSTag.textIndent N N myJSSTag.textIndent = anIndent CSS syntax: text-indent: anIndent Argument list: anIndent A value to indent the first line of text The JSSTag.textIndent property corresponds to the text-indent CSS property. This value is used to indent the first line of text in the styled element. The value is numeric but can be specified in several ways: . Absolute (10) . Relative (-5) . Percentage of paragraph width (10%) The default value for this property is 0, meaning no indent at all. This value is inherited from its parent container element. Warnings: . Deprecated for any further use. This was available only in Netscape 4.0 and is completely removed from Netscape 6.0. See also: Measurement units, style.textIndent JSSTag.textTransform (Property) The transformation of text in the object. CSS level 1 JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: String primitive 1267

JavaScript Programmer’s Reference JSSTag.textDecoration (Property) The text decoration

Thursday, July 26th, 2007

JavaScript Programmer’s Reference JSSTag.textDecoration (Property) The text decoration (underline, overline etc) for text in the object. CSS level 1 JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: String primitive JavaScript syntax: myJSSTag.textDecoration N myJSSTag.textDecoration = N aDecoration CSS syntax: text-decoration: aDecoration Argument list: A list of decorations for some text aDecoration The JSSTag.textDecorationproperty corresponds to the text-decoration CSS property. This controls the decoration of the text on screen with additional overprinting or dynamics. The following values are permitted: . underline . overline . line-through . blink Beware when you use the underline attribute, people may think that it is a hyperlink. Also avoid using the blink decoration unless you really need to. It can become very annoying for the user unless it is used with taste and discretion. The default value for this property is “none”. This value is not inherited from its parent container element although the attributes of the parent will persist. Warnings: . Deprecated for any further use. This was available only in Netscape 4.0 and is completely removed from Netscape 6.0. See also: style.textDecoration 1266

J JSSTag.textAlign (Property) JSSTag.textAlign (Property) The text

Wednesday, July 25th, 2007

J JSSTag.textAlign (Property) JSSTag.textAlign (Property) The text alignment within the object. CSS level 1 JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: String primitive JavaScript syntax: myJSSTag.textAlign N N myJSSTag.textAlign = anAlignment CSS syntax: text-align: anAlignment HTML syntax: <... ALIGN="..."> Argument list: A text alignment control anAlignment The JSSTag.textAlign property corresponds to the text-align CSS property. This property controls the justification of text between the left and right margins. The following values are supported: . left . right . center . justify IN addition a string can be used to indicate a character to use for decimal alignment. This need not be a dot but can be other characters to present a neatly laid out tabular column. The default value for this property depends on the user preference settings in the user agent. This value is inherited from its parent container element. Warnings: . Deprecated for any further use. This was available only in Netscape 4.0 and is completely removed from Netscape 6.0. See also: style.textAlign 1265

JavaScript Programmer’s Reference The JSSTag.paddingTop property (Web servers) corresponds to

Wednesday, July 25th, 2007

JavaScript Programmer’s Reference The JSSTag.paddingTop property corresponds to the padding-top CSS property. Refer to the JSSTag.paddingBottom topic for details. This value is not inherited from its parent container element. Warnings: . Deprecated for any further use. This was available only in Netscape 4.0 and is completely removed from Netscape 6.0. See also: Measurement units JSSTag.rgb() (Method) A JSS style control method. Availability: JavaScript 1.2 Netscape 4.0 JavaScript syntax: N myTags.anItem.rgb(aRed, aGreen, aBlue) aBlue Blue intensity value aGreen Green intensity value anItem A tag name such as P or B or H1 Argument list: aRed Red intensity value The rgb() method provides a convenient way to define an RGB triplet in a single call. Warnings: . Deprecated for any further use. This was available only in Netscape 4.0 and is completely removed from Netscape 6.0. Example code: // Some red texttags.P.rgb(255, 0, 0); JavaScript Style Sheets See also: Cross-references: Wrox Instant JavaScript page 50 1264

Best web hosting - J JSSTag.paddings() (Method) JSSTag.paddings() (Method) Set all

Tuesday, July 24th, 2007

J JSSTag.paddings() (Method) JSSTag.paddings() (Method) Set all padding values for an object. padding: aTop, aHoriz, aBottompadding: aTop, aRight, aBottom, aLeftpadding: aValuepadding: aVert, aHoriz Availability: CSS level 1 JavaScript 1.2 Netscape 4.0 Deprecated N myJSSTag.paddings(aValue) JavaScript syntax: N myJSSTag.paddings(aVert, aHoriz) CSS syntax: aBottom A padding applied at the bottom aHoriz A padding applied left and right aLeft A padding applied to the left aRight A padding applied to the right aTop A padding applied at the top aValue A padding value applied all round Argument list: aVert A padding applied top and bottom This method provides a way to set all four padding values at once. The number of arguments is variable and the values are applied in different ways according to how many are supplied. Warnings: . Deprecated for any further use. This was available only in Netscape 4.0 and is completely removed from Netscape 6.0. myJSSTag.paddings(aTop, aHoriz, aBottom) N myJSSTag.paddings(aTop, aRight, aBottom, aLeft) N See also: style.padding JSSTag.paddingTop (Property) The padding at the top of an object. Availability: CSS level 1 JavaScript 1.2 Netscape 4.0 Deprecated Property/method value type: String primitive JavaScript syntax: N myJSSTag.paddingTop N myJSSTag.paddingTop = aWidth CSS syntax: padding-top: aWidth Argument list: aWidth A CSS length value 1263

Make a web site - JavaScript Programmer’s Reference padding-left: aWidth aWidth A CSS

Tuesday, July 24th, 2007

JavaScript Programmer’s Reference padding-left: aWidth aWidth A CSS length value CSS syntax: Argument list: The JSSTag.paddingLeft property corresponds to the padding-left CSS property. Refer to the JSSTag.paddingBottom topic for details. This value is not inherited from its parent container element. Warnings: . Deprecated for any further use. This was available only in Netscape 4.0 and is completely removed from Netscape 6.0. See also: Measurement units JSSTag.paddingRight (Property) The padding at the right of an object. CSS level 1 JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: String primitive JavaScript syntax: myJSSTag.paddingRight N N myJSSTag.paddingRight = aWidth CSS syntax: padding-right: aWidth Argument list: A CSS length value aWidth The JSSTag.paddingRight property corresponds to the padding-right CSS property. Refer to the JSSTag.paddingBottom topic for details. This value is not inherited from its parent container element. Warnings: . Deprecated for any further use. This was available only in Netscape 4.0 and is completely removed from Netscape 6.0. See also: Measurement units 1262

J JSSTag.paddingLeft (Property) The content of an (Web site domain)

Monday, July 23rd, 2007

J JSSTag.paddingLeft (Property) The content of an object is enclosed in a bounding extent rectangle. Around this is placed a padding space controlled by the padding parameters. The padding expands the bounding. Then the border is placed around this. The border width increases the bounding rectangle around the object still further. Last of all the margin is placed around the outside. This forms a rectangle that is used to locate the object adjacent to any other objects or page margins. The value of this property can be specified as follows: . A length value in one of several units of measure . A percentage of the width of the object The initial value is set to 0 allowing for no padding value at all. This value is not inherited from its parent container element. Object Padding Border Margin Border bottom width Margin bottom Padding bottom Warnings: . Deprecated for any further use. This was available only in Netscape 4.0 and is completely removed from Netscape 6.0. See also: Measurement units JSSTag.paddingLeft (Property) The padding at the left of an object. CSS level 1 JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: N myJSSTag.paddingLeft JavaScript syntax: N myJSSTag.paddingLeft = aWidth String primitive Deprecated 1261

JavaScript Programmer’s Reference JSSTag.marginTop (Property) The margin at

Monday, July 23rd, 2007

JavaScript Programmer’s Reference JSSTag.marginTop (Property) The margin at the top of an object. CSS level 1 JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: String primitive JavaScript syntax: myJSSTag.marginTop N N myJSSTag.marginTop = aWidth CSS syntax: margin-top: aWidth Argument list: aWidth A CSS length value The JSSTag.marginTop property corresponds to the margin-top CSS property. Refer to the JSSTag.marginBottomtopic for details. This value is not inherited from its parent container element. Warnings: . Deprecated for any further use. This was available only in Netscape 4.0 and is completely removed from Netscape 6.0. See also: Measurement units JSSTag.paddingBottom (Property) The padding at the bottom of an object. CSS level 1 JavaScript 1.2 Netscape 4.0 Deprecated Availability: Property/method value type: String primitive JavaScript syntax: N myJSSTag.paddingBottom N myJSSTag.paddingBottom = aWidth CSS syntax: padding-bottom: aWidth Argument list: aWidth A CSS length value The JSSTag.paddingBottom property corresponds to the padding-bottom CSS property. 1260

J JSSTag.margins() (Method) margin-right: aWidth aWidth A (Web hosting resellers)

Monday, July 23rd, 2007

J JSSTag.margins() (Method) margin-right: aWidth aWidth A CSS length value CSS syntax: Argument list: The JSSTag.marginRight property corresponds to the margin-right CSS property. Refer to the JSSTag.marginBottomtopic for details. This value is not inherited from its parent container element. Warnings: . Deprecated for any further use. This was available only in Netscape 4.0 and is completely removed from Netscape 6.0. See also: Measurement units JSSTag.margins() (Method) Set all margin values for an object. CSS level 1 JavaScript 1.2 Netscape 4.0 Deprecated Availability: N myJSSTag.margins(aTop, aHoriz, aBottom) N myJSSTag.margins(aTop, aRight, aBottom, aLeft) N myJSSTag.margins(aValue) JavaScript syntax: N myJSSTag.margins(aVert, aHoriz) CSS syntax: aBottom A margin applied at the bottom aHoriz A margin applied left and right aLeft A margin applied to the left aRight A margin applied to the right aTop A margin applied at the top aValue A margin value applied all round Argument list: aVert A margin applied top and bottom margin: aTop, aHoriz, aBottommargin: aTop, aRight, aBottom, aLeftmargin: aValuemargin: aVert, aHoriz This method provides a way to set all four margin values at once. The number of arguments is variable and the values are applied in different ways according to how many are supplied. Warnings: . Deprecated for any further use. This was available only in Netscape 4.0 and is completely removed from Netscape 6.0. See also: JavaScript Style Sheets, style.margin 1259