It’s very likely that…

I repeatedly see certain bad practices in HTML that ironically contain clues for implementing them properly in their class names or in the way they’re built. In this evergreen post, I collect them.
…if you’re using javascript:void(0) as the v…


This content originally appeared on Manuel Matuzović - Web development blog and was authored by Manuel Matuzović

I repeatedly see certain bad practices in HTML that ironically contain clues for implementing them properly in their class names or in the way they're built. In this evergreen post, I collect them.

…if you're using javascript:void(0) as the value of the href attribute, the element you're actually looking for is <button>.

<a href="javascript:void(0);">
Open modal
</a>

More accessible alternative:

<button>
Open modal
</button>

Explanation

The role of <a> is link and the role of <button> is button. Users have certain expectations when they find an element. A general rule of thumb: Use a link if it takes you somewhere else. Use a button if you submit a form or run JavaScript.

My blog doesn't support comments yet, but you can reply via blog@matuzo.at.


This content originally appeared on Manuel Matuzović - Web development blog and was authored by Manuel Matuzović


Print Share Comment Cite Upload Translate Updates
APA

Manuel Matuzović | Sciencx (2023-04-16T08:46:54+00:00) It’s very likely that…. Retrieved from https://www.scien.cx/2023/04/16/its-very-likely-that/

MLA
" » It’s very likely that…." Manuel Matuzović | Sciencx - Sunday April 16, 2023, https://www.scien.cx/2023/04/16/its-very-likely-that/
HARVARD
Manuel Matuzović | Sciencx Sunday April 16, 2023 » It’s very likely that…., viewed ,<https://www.scien.cx/2023/04/16/its-very-likely-that/>
VANCOUVER
Manuel Matuzović | Sciencx - » It’s very likely that…. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2023/04/16/its-very-likely-that/
CHICAGO
" » It’s very likely that…." Manuel Matuzović | Sciencx - Accessed . https://www.scien.cx/2023/04/16/its-very-likely-that/
IEEE
" » It’s very likely that…." Manuel Matuzović | Sciencx [Online]. Available: https://www.scien.cx/2023/04/16/its-very-likely-that/. [Accessed: ]
rf:citation
» It’s very likely that… | Manuel Matuzović | Sciencx | https://www.scien.cx/2023/04/16/its-very-likely-that/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.