A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.cdn.mozilla.net/en-US/docs/Web/API/Document/fragmentDirective below:

Document: fragmentDirective property - Web APIs

Document: fragmentDirective property

Baseline 2025

Newly available

The fragmentDirective read-only property of the Document interface returns the FragmentDirective for the current document.

Value

A FragmentDirective object.

Examples Checking if text fragments are supported

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