JavaScript Style Sheets

From Infogalactic: the planetary knowledge core
Jump to: navigation, search
JavaScript Style Sheets
Filename extension .js
Internet media type text/javascript
Developed by Netscape Communications Corporation
Type of format Style sheet language
Standard Netscape's JavaScript-Based Style Sheets submission to the W3C

JavaScript Style Sheets (JSSS) was a stylesheet language technology proposed by Netscape Communications Corporation in 1996 to provide facilities for defining the presentation of webpages.[1] It was an alternative to the Cascading Style Sheets (CSS) technology.[1] Although Netscape submitted it to the World Wide Web Consortium (W3C), the technology was never accepted as a formal standard and it never gained much acceptance in the market. Only Netscape Communicator 4 supported JSSS, with the rival Internet Explorer web browser choosing not to implement the technology. Soon after Netscape Communicator's release in 1997, Netscape stopped promoting JSSS, instead focusing on the rival CSS standard, which was also supported by Internet Explorer and had a much wider industry acceptance. The follow-up to Netscape Communicator, Netscape 6 (released in 2000), dropped support for JSSS. It now remains little more than a historical footnote, with many Web developers not even being aware of its existence. The proposed standard was not finished.

Using JavaScript code as a stylesheet, JSSS styles individual element by modifying properties of the document.tags object. For example, the CSS:

 h1 { font-size: 20pt; }

is equivalent to the JSSS:

 document.tags.H1.fontSize = "20pt";

JSSS element names are case sensitive.

JSSS lacks the various CSS selector features, supporting only simple tag name, class and id selectors. On the other hand, since it is written using a complete programming language, stylesheets can include highly complex dynamic calculations and conditional processing. (In practice, however, this can be achieved as Dynamic CSS by using JavaScript to modify the stylesheets applicable to the document at runtime.) Because of this JSSS was often used in the creation of DHTML.

Being written in JavaScript, JSSS may seem less friendly than CSS to users without a programming background.

Example

The following example shows part of the sourcecode of an HTML-document:

<style type="text/javascript">
tags.H1.color = "blue";
tags.p.fontSize = "14pt";
with (tags.H3) {
    color = "green";
}
with (tags.H2) {
    color = "red";
    fontSize = "16pt";
    marginTop = "2cm";
}
</style>

Similar to Cascading Style Sheets, JSSS can be used in a <style>-tag. This Example shows two different methods to select tags.

Browser support

Javascript Style Sheets were only supported by Netscape 4.x (4.0–4.8) but no later versions. No other web browser integrated JSSS.

References

  1. 1.0 1.1 Lua error in package.lua at line 80: module 'strict' not found.

External links