HTMLModElement: cite property
The cite
property of the HTMLModElement
interface indicates the URL of the resource explaining the modification. It reflects the cite
attribute of the <del>
element and <ins>
elements.
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