DEV Community

Discussion on: Tell us what your top unpopular tech opinion is 😈

Collapse
 
fleshmecha profile image
〄

I run my website through the wave test for checking accessibility and it’s never said form action to change pages is a problem. Can you explain why this breaks accessibility in your view? I’d love to learn something new.

Thread Thread
 
gmartigny profile image
Guillaume Martigny

I'm not an accessibility expert. But the simpler the better for screen-reader.

<form action="page.html">
    <button type="submit">Click</button>
</form>

vs

<a href="page.html">Click</a>

What's make you prefer the former one ?