possessive
Expression ['my' | 'its' | <expressions>'s] <property>
['my' | 'its' | <expressions>'s] attribute <stringLike>
The possessive expression can be used in places to more clearly express intent when compared with the more typical
.
operator.
The possessive expression can also be used to get and set attributes of an element in the DOM
<div _="on click set the window's location to 'https://duck.com'">
Go to Duck Duck Go
</div>
<div
data-demo="Here is some data..."
_="on click put my attribute data-demo into me"
>
Replace Me w/ Attribute Data
</div>