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
id="foo"
data-demo="Here is some data..."
>
</div>
<button _"on click put #foo's @data-demo into me">
Replace Me w/ Foo's Attribute Data
</button>