Click to See Complete Forum and Search --> : Javascript Paragraph?


96turnerri
11-12-2003, 08:08 AM
hi, i need a paragraph about what is javascript, it doesnt need to go into much detail, just kinda like outline kinda thing, ive tried writing one myself o deah, and i couldnt find any on google, does anybody know any places i could get one from.

Im also looking for the same thing but with CSS, if thats not too much to ask

Thanks Alot
Rich

Charles
11-12-2003, 08:14 AM
From the Client-Side JavaScript Guide for JavaScript 1.3
JavaScript is Netscape's cross-platform, object-oriented scripting language. Core JavaScript contains a core set of objects, such as Array, Date, and Math, and a core set of language elements such as operators, control structures, and statements. Core JavaScript can be extended for a variety of purposes by supplementing it with additional objects; for example:

* Client-side JavaScript extends the core language by supplying objects to control a browser (Navigator or another web browser) and its Document Object Model (DOM). For example, client-side extensions allow an application to place elements on an HTML form and respond to user events such as mouse clicks, form input, and page navigation.
* Server-side JavaScript extends the core language by supplying objects relevant to running JavaScript on a server. For example, server-side extensions allow an application to communicate with a relational database, provide continuity of information from one invocation to another of the application, or perform file manipulations on a server.

JavaScript lets you create applications that run over the Internet. Client applications run in a browser, such as Netscape Navigator, and server applications run on a server, such as Netscape Enterprise Server. Using JavaScript, you can create dynamic HTML pages that process user input and maintain persistent data using special objects, files, and relational databases. Through JavaScript's LiveConnect functionality, you can let Java and JavaScript code communicate with each other. From JavaScript, you can instantiate Java objects and access their public methods and fields. From Java, you can access JavaScript objects, properties, and methods. Netscape invented JavaScript, and JavaScript was first used in Netscape browsers.
http://devedge.netscape.com/library/manuals/2000/javascript/1.3/guide/intro.html#1009369

Charles
11-12-2003, 08:18 AM
From the Cascading Style Sheets, level 2 CSS2 Specification
CSS2 is a style sheet language that allows authors and users to attach style (e.g., fonts, spacing, and aural cues) to structured documents (e.g., HTML documents and XML applications). By separating the presentation style of documents from the content of documents, CSS2 simplifies Web authoring and site maintenance.
http://www.w3.org/TR/REC-CSS2/

96turnerri
11-12-2003, 11:27 AM
thanks charles just what i was looking for :D

pyro
11-12-2003, 12:34 PM
When you use this, it'd probably be a good idea to include the source, as Charles has.

96turnerri
11-12-2003, 05:43 PM
not a bad a idea thanks pyro