How to make a great government website
asteriskmag.com
How to make a great government website
1–10 of 74 posts
Re: How to make a great government website
#2https://yalebooks.yale.edu/book/9780300078152/seeing-like-a-...
https://www.bitsaboutmoney.com/archive/seeing-like-a-bank/
https://www.belfercenter.org/publication/seeing-data-structu...
Re: How to make a great government website
#3Re: How to make a great government website
#4Re: How to make a great government website
#5Ctr+F "javascript" -- no results. Hmm, if a government website necessitates the use of JavaScript, I'd consider that a hallmark of being awful.
Governments often have complicated forms that need to cater for a broad range of users. So you need things like conditioning steps, file uploads and progress saving.
Have fun doing that in pure HTML and CSS.
Re: How to make a great government website
#6Ctr+F "javascript" -- no results. Hmm, if a government website necessitates the use of JavaScript, I'd consider that a hallmark of being awful.
I’m not sure if this is a joke but if not.. Governments often have complicated forms that need to cater for a broad range of users. So you need things like conditioning steps, file uploads and progress saving. Have fun doing that in pure HTML and CSS.
The complexity of government forms is not about fancy custom dialogs, elaborate data types or cute animations. There are usually a lot of (simple) questions. Yes/no, checkboxes, dates and times, free fields. The list is not endless.
These forms needs to be frustration free as possible. IME all easy targets if you don’t use JS.
Re: How to make a great government website
#7Ctr+F "javascript" -- no results. Hmm, if a government website necessitates the use of JavaScript, I'd consider that a hallmark of being awful.
I’m not sure if this is a joke but if not.. Governments often have complicated forms that need to cater for a broad range of users. So you need things like conditioning steps, file uploads and progress saving. Have fun doing that in pure HTML and CSS.
Re: How to make a great government website
#8Ctr+F "javascript" -- no results. Hmm, if a government website necessitates the use of JavaScript, I'd consider that a hallmark of being awful.
I’m not sure if this is a joke but if not.. Governments often have complicated forms that need to cater for a broad range of users. So you need things like conditioning steps, file uploads and progress saving. Have fun doing that in pure HTML and CSS.
https://design-system.service.gov.uk/
(I'm aware the design system has a sprinkling of JS, but it offers a few in-page enhancements and works just fine without)
Re: How to make a great government website
#9Ctr+F "javascript" -- no results. Hmm, if a government website necessitates the use of JavaScript, I'd consider that a hallmark of being awful.
Anyone browsing the internet without it at this point is doing it intentionally to be special.
Re: How to make a great government website
#10Ctr+F "javascript" -- no results. Hmm, if a government website necessitates the use of JavaScript, I'd consider that a hallmark of being awful.
Some forms and many parts of a government website can indeed be done without JS and should at the very least be done with server side rendering to minimise the usage of JS as much as possible. But large parts of a “modern” government website will typically require some JS in order to operate properly.