| JavaScript |  |  |
 |  |  |
location.hash
Anchor name in the URL |  | |
location.host
Host and domain name, or IP address, of a network host. |  | |
location.hostname
Host:port portion of the URL. |  | |
location.href
Entire URL |  | |
location.pathname
URL-path portion of the URL. |  | |
location.port
Communication port that the server uses. |  | |
location.protocol
Beginning of the URL, including the colon |  | |
location.search
Search |  | |
history.current
URL of the current history entry |  | |
history.length
Number of entries in the history list |  | |
history.next
URL of the next history entry. |  | |
history.previous
URL of the previous history entry |  | |
navigator.appName
Browser |  | |
navigator.appVersion
Browser Version |  | |
navigator.appCodeName
Code name of the browser |  | |
navigator.platform
Platform |  | |
navigator.cookieEnabled
Cookies Enabled |  | |
navigator.userAgent
Browser's user agent header |  | |
navigator.cpuClass
CPU Class |  | |
navigator.appMinorVersion
Minor Version of the browser |  | |
navigator.browserLanguage
Current Browser Language |  | |
navigator.onLine
Specifies whether the system is in offline |  | |
navigator.systemLanguage
Language Used by the OS |  | |
navigator.userLanguage
The OS' natural language |  | |
| screen.width |  | |
| screen.height |  | |
| screen.availWidth |  | |
| screen.availHeight |  | |
| screen.colorDepth |  | |
| screen.pixelDepth |  | |
 |  |  |
 |  |
|
 |  |  |
 |  |  |
 |  |  |
 |  |  |
 |  |  |
 |  |  |
 |  |  |
| testing area |  | |
 |  |
|
Plugins
for(i=0; i<navigator.plugins.length; i++) { document.write(navigator.plugins[i].name + '<br>') } |  | |
Cookies
allCookies = document.cookie.split('; ')
for(i=0; i<allCookies.length; i++) { document.write(allCookies[i] + '<br>') } |  | |
| CGI variables |  |  |
AUTH_TYPE
If the server supports user authentication and the script is protected, this is the protocol-specific authentication method used to validate the user. |  | |
CONTENT_LENGTH
The length of the content, as given by the client. |  | 0 |
CONTENT_TYPE
For queries that have attached information, such as HTTP POST and PUT, this is the content type of the data. |  | |
GATEWAY_INTERFACE
The version of the CGI spec with which the server complies. |  | CGI/1.1 |
HTTP_ACCEPT
The MIME types that the client accepts, as specified by HTTP headers. |  | text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 |
| HTTP_ACCEPT_CHARSET |  | ISO-8859-1,utf-8;q=0.7,*;q=0.7 |
| HTTP_ACCEPT_ENCODING |  | gzip |
HTTP_ACCEPT_LANGUAGE
The languages that the client accepts, as specified by HTTP headers. |  | en-us,en;q=0.5 |
| HTTP |  | |
HTTPS
Indicates if SSL mode is enabled for the server. |  | OFF |
HTTPS_CLIENT_CERT_COMMON_NAME
The common name on the x.509 certificate |  | |
HTTPS_CLIENT_CERT_ISSUER_COMMON_NAME
The issuer of the x.509 certificate |  | |
HTTPS_KEYSIZE
The session key during an SSL session. For example, 40-bit, 128-bit. |  | |
 |  |  |
 |  |  |
 |  |  |
| HTTP_CONNECTION |  | close |
| HTTP_COOKIE |  | |
| HTTP_FORWARDED |  | |
| HTTP_HOST |  | parsetext.com |
| HTTP_PRAGMA |  | no-cache |
| HTTP_X_FORWARDED_FOR |  | |
 |  |  |
 |  |  |
 |  |  |
| PATH |  | |
PATH_INFO
The extra path information (from the server's root HMTL directory), as given by the client. In other words, scripts can be accessed by their virtual path name, followed by extra information that is sent as PATH_INFO. |  | /1/parsetext.nsf/jsinfo.htm |
PATH_INFO_DECODED
Returns the same as Path_Info, but decodes the string. For example, if a URL references a view name that contains characters that are not allowed a URL, the name is encoded. This CGI variable decodes the string. Path_Info_Decoded is available to Domino applications only. |  | /1/parsetext.nsf/jsinfo.htm |
PATH_TRANSLATED
The server provides a translated version of PATH_INFO, which takes the path and does any virtual-to-physical mapping to it. |  | /1/parsetext.nsf/jsinfo.htm |
QUERY_STRING
The information that follows the question mark ( ? ) in the URL that referenced this script. |  | |
QUERY_STRING_DECODED
Returns the same as Query_String, but decodes the string. |  | |
REMOTE_ADDR
The IP address of the remote host making the request. |  | 38.107.191.96 |
REMOTE_HOST
The name of the host making the request. |  | |
REMOTE_IDENT
This variable is set to the remote user name retrieved from the server. Use this variable only for logging. |  | |
REQUEST_CONTENT
Supported only for agents. Contains the data sent with an HTTP POST request. The data is usually "URLencoded," consisting of name=value pairs concatenated by ampersands. |  | |
REQUEST_METHOD
The method used to make the request. For HTTP, this is "GET," "HEAD," "POST," and so on. |  | GET |
| REMOTE_PORT |  | |
REMOTE_USER
Authentication method that returns the authenticated user name. |  | |
| REQUEST_URI |  | |
 |  |  |
 |  |  |
SCRIPT_NAME
A virtual path to the script being executed, used for self-referencing URLs. |  | |
 |  |  |
SERVER_NAME
The server's host name, DNS alias, or IP address as it would appear in self-referencing URLs. |  | parsetext.com |
SERVER_PORT
The port to which the request was sent. |  | 80 |
SERVER_PROTOCOL
The name and revision of the information protocol accompanying this request. |  | HTTP/1.1 |
 |  |  |
SERVER_SOFTWARE
The name and version of the information server software running the CGI program. |  | Lotus-Domino |
SERVER_URL_GATEWAY_INTERFACE
The version of the CGI spec with which the server complies. |  | |
 |  |  |
 |  |  |