2022-11-28
|~1 min read
|54 words
https://javascript.info/bubbling-and-capturing#capturing Masters did a demo on how bubbling/capturing of events matters with portals. Three…
2022-11-28
|~1 min read
|160 words
The tag is an interesting HTML tag I’d not come across before. It’s primary use seems to be to facilitate interaction between the browser…
2022-11-28
|~2 min read
|272 words
The standard behavior of a tag on submit is to send a request with all of the form’s values passed as query parameters. There are a number…
2022-11-28
|~2 min read
|244 words
Yesterday, I wrote about the use of the tag to effect a strike through in a Markdown document rendered to HTML. Well, that took me down a…
2022-11-28
|~1 min read
|163 words
This evening I was going on my merry way when I realized that I wanted to add some emphasis to my writing by adding a strikethrough mark…
2022-11-28
|~3 min read
|417 words
Two fun little websites that are great resources for unicode left and right arrows: right-arrow.net left-arrow.net Here are the tables (with…
2022-11-28
|~1 min read
|182 words
The HTML tag has several useful properties to be aware of: - which provides an easier styling of included tags, though this can also be…
2022-11-28
|~2 min read
|289 words
As one of the fortunate few (relatively) who learned to make websites after the ascendency of React, I find that I often struggle when…
2022-11-28
|~9 min read
|1783 words
When it comes to coding, there’s always something new to learn. One of the areas I find I have a hard time with are Take, for example, this…
2022-11-28
|~5 min read
|990 words
Update: I recently revisited this use of and in the context of utilizing the appropriate event. Read about it in Form Validation…
2022-11-28
|~4 min read
|627 words
When you manage a web-app fully with React, it’s easy to forget that there’s HTML involved. You add the tag to the body, give it a as a…
2022-11-28
|~2 min read
|301 words
I was looking to plan an event recently at Beermiscuous, a beer cafe in Chicago that I really like. Their event inquiry is a simple process…
2022-11-28
|~1 min read
|79 words
Recently, I went on a search to find a new arrow to use on my website (I settled on which produces this: ➥). In my search, I found this…
2022-11-28
|~2 min read
|367 words
I thought this was pretty cool. Imagine you want to create a file programmatically and allow a user to download it. For the sake of this…
2022-11-28
|~3 min read
|539 words
When asking users for their input, it’s often a pleasant user experience to allow them to submit the form by pressing “Enter”. In fact, that…
2022-11-28
|~2 min read
|386 words
Starting around 2015, browsers started treating the attribute on fields differently. Instead of honoring what had become a tradition of…
2022-11-28
|~3 min read
|442 words
One of the more frustrating little quirks about HTML is its insistence on collapsing white space. This is actually often more useful than it…
2022-11-28
|~1 min read
|155 words
Ids are everywhere. But what are the rules for them? Turns out, the rules in HTML5 are pretty permissive: unique, at least one character…
2022-11-28
|~2 min read
|235 words
In looking into labels for web forms recently, I stumbled on a question I really didn’t know the answer to: What’s the difference between a…
2022-11-28
|~3 min read
|460 words
NB: The below illustrations are inspired / adapted from MDN’s great page on QuerySelector. I did not come up with these examples (though I…