window.location window.location.hash window.location.search window.location.href window.location.pathname # In some cases document.URL document.documentURI document.baseURI document.referrer URL.search URL.searchParams.get(param) input.value // TBD: Cookies
window.location.href = x window.location.assign(x) window.location.replace(x) document.domain = x
element.innerHTML = x element.outerHTML = x element.insertAdjacentHTML = x window.write(x) document.writeln(x)
el.setAttribute(attr, x) el.setAttribute('href', x) el.setAttribute('src', x) element.onevent = x el.style.cssText = x
eval(x) Function(x) setTimeout(x) setInterval(x) setImmediate(x) execCommand(x) execScript(x)
history.go(-1) history.pushState(x) history.replaceState(x)