Baseline 2025
Newly available
The fragmentDirective
read-only property of the Document
interface returns the FragmentDirective
for the current document.
A FragmentDirective
object.
The code below logs whether or not text fragments are supported in your browser by checking for existence of the object. Note that the object is empty, and at present it is mainly intended for feature detection. In the future, it might include other information.
const logElement = document.querySelector("#log");
function log(text) {
logElement.innerText = text;
}
if (document.fragmentDirective) {
log("Your browser supports text fragments.");
} else {
log("Text fragments are not supported in your browser.");
}
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4