Skip to content
#

web-development

Here are 1,465 public repositories matching this topic...

fvsch
fvsch commented Apr 22, 2016

It's probably worth expanding on the script element.

At the very least I'd mention that <script src="..."></script> blocks content rendering while the script loads and executes, and add a non-blocking example with <script async src="..."></script>.

The scope of this project is not to explain every feature of each element that can go in <head>, but for important features it's probably a goo

zohaad
zohaad commented Apr 14, 2020

I tried to find this in the documentation and examples, but there's no example of a manual request being made, only <form action="/login" method="post">

I tried:

let form = this.document.getElementById( 'loginForm' );
var formData = new FormData( form );
let res = await fetch( '/', {
    method: 'POST',
    body: formData,
    header: { 'Content-Type': 'multipart/form-data' },
})
trusktr
trusktr commented Feb 10, 2019

I see the "Welcome" doc page mentions "component system", but it is very vague. Can you describe what are all the reasons that I'd want to use Whitestorm over plain Three.js, f.e. what are all the things I get that Three.js does no offer, so that I can better understand?

Thanks!

1jj
1jj commented Dec 11, 2019

"Attribute itemprop not allowed on element link at this point"
I get this errors for things like that:
<link rel=icon itemprop=logo href=ico.png>
<link rel=canonical itemprop=url href="https://example.org/">

Otherwise the spec says
"Every HTML element may have an itemprop attribute specified"
https://html.spec.whatwg.org/multipage/microdata.html#names:-the-itemprop-attribute

Goo

Improve this page

Add a description, image, and links to the web-development topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the web-development topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.