George Gooding

Results 32 comments of George Gooding

According to the latest recommendations, aria-required and aria-invalid should not be used on elements which already have the required attribute or which are invalid according to constraints: http://www.w3.org/TR/html-aria/#docconformance For aria-invalid...

This seems to be a parallel to the [namespaces option in the vue-i18next library](https://panter.github.io/vue-i18next/guide/i18n-options.html#namespaces) or the [keyPrefix option.](https://panter.github.io/vue-i18next/guide/i18n-options.html#keyprefix) When you're building a large application, or a web site, you will...

Would also love to see an example of how to use hyperform with a validation rule that is dependent on an AJAX request.

The "equalTo" validation from jQuery Validation is maybe a good example of this. Other use cases are when you need to validate something via an AJAX request (I have another...

It would be great to be able to target versions of packages that have existed for X amount of time, or since X date. If you would like to update...

ESLint + Volta + VSCode still doesn't work, unfortunately. I will probably have to stop using Volta due to this.

Related: Jump to definition (ctrl+click) for import statements that do not have a file extension. Common convention with Webpack for import URLs to not have extension, resolves automatically via Webpack...

I think the next natural step is towards web component frameworks. That is, you write code that is more in line with straight up web components, and the role of...

I think the only thing that doesn't work is the new breaking way show/hide function, now that I think about it.

Per best practices, show/hide calls should be replaced by either adding/removing a class name, which can be styled via CSS to give the correct display property; or as I have...