We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When used in conjunction with htmx, I will often use _hs to perform some action at the end of the htmx swap or request.
Example:
<button hx-get="/get" hx-target="#the-target-of-htmx"></button> <div id="the-target-of-htmx" _="on htmx:afterRequest from previous <button/> toggle .cool-style on me"></div>
What I would like is to be able to use a to keyword in place of from such that the following selector matches the target of the event such as
to
from
target
<div id="the-target-of-htmx" _="on htmx:afterRequest to me toggle .cool-style on me"></div>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When used in conjunction with htmx, I will often use _hs to perform some action at the end of the htmx swap or request.
Example:
What I would like is to be able to use a
to
keyword in place offrom
such that the following selector matches thetarget
of the event such as<div id="the-target-of-htmx" _="on htmx:afterRequest to me toggle .cool-style on me"></div>
The text was updated successfully, but these errors were encountered: