Travis Horn
Travis Horn

Travis Horn

Follow
homeContact me
Tag

Frontend Development

#frontend-development

More content

Read more stories on Hashnode


Articles with this tag

Some ways to align the last row in a flexbox grid

Mar 18, 20213 min read

Using flexbox doesn’t always produce the expected alignment, especially on the last row of a grid. When you use justify-content: space-between it will...

Some ways to align the last row in a flexbox grid

Using Computed Getters & Setters in Vue

May 2, 20173 min read

Vue.js supports getters and setters on computed variables. You can use these variables to provide 2-way data binding. Let’s use this feature to write...

Using Computed Getters & Setters in Vue

Populate <select> via AJAX

Nov 4, 20162 min read

I recently ran into a situation where I had a input and I wanted to populate it with a list of options from an API endpoint. In fact, I had multiple...

Populate <select> via AJAX

Access the browser’s query string as a JavaScript Object

Sep 8, 20164 min read

I recently read a post on David Walsh’s blog called Get Query String Parameters with JavaScript. He provides a simple function for getting parts of...

Access the browser’s query string as a JavaScript Object