-
Notifications
You must be signed in to change notification settings - Fork 0
Functions
Anonymouse Coder edited this page Dec 2, 2021
·
1 revision
- getQueryVariable(variable) - Returns the value of a specific GET request variable.
- setInnerHTML(selector, html) - Sets the inner html of the selector.
- setText(selector, text) - Same thing as setInnerHTML() but with text instead.
- addElement(selector, id) - Adds a HTML element to the
<body>tag. - qsel(selector) - Easer way of running document.querySelector(selector). You wouldn't believe how much time this actually saves.