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 |