Skip to content

Some useful tricks available in HTML5

New Course Coming Soon:

Get Really Good at Git

Warning: this post is old and might not reflect the current state of the art

Autofocus

<input autofocus="autofocus" /> will put the focus on the specified HTML element when the page loads

Downloading files

<a href="file.pdf" download="pdf-file">Download</a> will download the specified file, with the name provided.

Hide elements

<div hidden="hidden"></div> despite putting the presentation in the HTML, which is bad, this can sometimes turn out useful.

Turning off (or on) spellchecking

Operating systems configured to spell check everything a user types can sometimes get in the way - <input type="text" spellcheck="true|false"> can help.

Auto suggestion text input control

<input list="mylist" name="mylist" />
<datalist id="mylist">
  <option value="CSS"></option>
  <option value="HTML"></option>
  <option value="PHP"></option>
  <option value="Jquery"></option>
  <option value="Wordpress"></option>
</datalist>
Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching Summer 2024. Join the waiting list!
→ Read my DOM Tutorial on The Valley of Code
→ Read my Browser Events Tutorial on The Valley of Code
→ Read my Browser APIs Tutorials on The Valley of Code

Here is how can I help you: