Skip to content

Find what you need, instantly

Search components, ARIA roles & attributes, and WCAG criteria.

All attributes

aria-grabbed

BooleanDeprecated

Indicated whether an element was currently 'grabbed' in a drag-and-drop operation. Part of an ARIA drag-and-drop model that never gained reliable support and was removed from the spec — use native HTML drag-and-drop or an accessible custom pattern instead.

Values
true
The element is grabbed for dragging (deprecated).
false
The element is draggable but not currently grabbed (deprecated).
undefined (default)
The element is not draggable.
Used on
Any HTML element — aria-grabbed is a global property.
Associated roles
Every ARIA role. As a global property, aria-grabbed is supported on all roles.
Example
aria-grabbed="…"
<li aria-grabbed="true">Item</li>