web api instance property
LayoutShiftAttribution: node property
Limited availability
The node read-only property of the LayoutShiftAttribution interface returns a Node representing the object that has shifted.
Value
A Node.
Examples
The following example prints the node of the first item in sources to the console.
new PerformanceObserver((list) => {
for (const { sources } of list.getEntries()) {
if (sources) {
console.log(sources[0].node);
}
}
}).observe({ type: "layout-shift", buffered: true });
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.