HTMLModElement: cite property - Web APIs | MDN

Value

A string representing a URL.

Example

js

const mod = document.querySelector("edit");
console.log(`Explanation: ${mod.cite}`); // the current value
mod.cite = "https://example.com/edits"; // updates the element's cite

Specifications

Specification
HTML
# dom-mod-cite

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.