Global

Global scope

Type Definitions

element_tag

A tagName of an Element (such as "link").
Source:
just.js, line 89
Type:

string

propertiesDescriptor

Same as the second param for Object.defineProperties
Source:
just.js, line 75
Type:

object

propertyDescriptor

Same as the third param for Object.defineProperty
Source:
just.js, line 82
Type:

object

url

An absolute, relative or blob url.
Source:
just.js, line 51
Type:

string

url_parts

The full parts of an url.
Source:
just.js, line 58
Properties:
NameTypeDescription
protocol
stringA protocol (including ":", like "ftp:") or ":".
href
stringAn absolute url (like "ftp://username:password@www.example.com:80/a?b=1#c").
host
stringThe host (like "www.example.com:80") or an empty string.
hostname
stringA hostname (like "www.example.com").
port
stringThe GIVEN port as a number (like "80") or an empty string.
pathname
stringA pathname (like "/a").
origin
stringThe origin (like "ftp://www.example.com").
search
stringThe query arguments (including "?", like "?b=1") or an empty string.
hash
stringThe hash (including '#', like "#c") or an empty string.
username
stringThe given username or an empty string.
password
stringThe given password or an empty string.
Type:

Object