#intermediate
All the topics that we've covered at an intermediate level
HTML: Content Editable
Apr 27, 2019
Using HTML5 contentEditable you can make HTML markup editable by the user.
Use a Placeholder Background Color for a Background Image
Apr 26, 2019
Using CSS you can protect against slow loading background images especially if you have text on top of the image.
Git Dry Run Option
Apr 24, 2019
Still not 100% confident in your Git foo? You can perform some git operations with a dry-run flag to see what would happen if you were to run the command
Javascript Rest Parameters
Apr 21, 2019
ES6 introduced the rest parameter syntax which you should use instead of the arguments object for a javascript function
HTML Submit Button Outside The Form
Apr 20, 2019
For a HTML form element you can put your submit button outside of the form element as long as you have reference the form’s id property with the button’s form property.