From dfe289850f068f19ba4a83ab4e7e22a7e09c13c9 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Jan 2013 13:17:21 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- tdehtml/ecma/jsk.html | 113 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 tdehtml/ecma/jsk.html (limited to 'tdehtml/ecma/jsk.html') diff --git a/tdehtml/ecma/jsk.html b/tdehtml/ecma/jsk.html new file mode 100644 index 000000000..917c083e8 --- /dev/null +++ b/tdehtml/ecma/jsk.html @@ -0,0 +1,113 @@ + + + +Javascript Konsole + + + + +

JavaScript Konsole

+
+ + + + + +
Expression
Result Type
Result(s)
  + + +
+
+

Explanation

+

Operation

+
+When evaluate is pressed, the given expression is evaluated and the result is displayed in the result(s) field. +In case of list properties being pressed, the result of the expression is taken as an object +and the objects properties are displayed with their type and value in the the result(s) field. +
+

Expression

+
+Expression must be a valid javascript expression, e.g.
window +
or
document.body.innerHTML
or
+"Today: " + (new Date()).toString()
+or
+"Cablecar".match(/ab.*c/) +
It is also possible to assign a value, +e.g.
document.getElementsByTagName('H1').item(0).innerText="Hello World"
+You may execute these examples by pasting them into the expression field. +
+

Result Type

+
+The type of the result of the given expression. +
+

Result(s)

+
+The result of the expression is implicitly converted to a primitive type by the javascript interpreter, +if evaluate was pressed. When list properties was pressed, a for (var i in obj) loop +is executed to list the properties. These object properties are in turn evaluated and their types and values +are displayed. +
+

+Till Krech +

+

+
+

+ + + -- cgit v1.2.1