-
-
Notifications
You must be signed in to change notification settings - Fork 154
Closed
Labels
Milestone
Description
Hello, Mintlang devs.
It's documented how when you click on an a
element it automatically attempts to go to the destination without loading.
However, there's another element, that when an action happens, it doesn't do this: the form
element.
form
s have multiple methods. In those methods, form
supports the GET
method. This method makes the form post the contents in (a) query parameter(s).
This type of form
resembles an a
, but except behaving more like a form than something to instantly click on.
My issue is, I think form
s with the GET
method (which is the default) should behave closer to an a
element, also try to "jump" to the destination with query parameters.
ryanprior