Tag page
beginner-tips
Page 2 of 4
Tag archive
Posts
Page 2 of 4
- Constantly letting down my variables
As it turns out I’ve been doing everything wrong. Well, maybe not everything, but at the very least I’ve been declaring variables incorrectly.…
- How to write modern JS
So you're learning JavaScript (JS), cool. Putting all this effort in, you'll want to be learning the modern usage of the language right? Time to…
- Pastebot
The more time I spend coding the more time I find myself researching solutions to workflow problems I've never had before. Copy and paste is a…
- on() click()
Today I learned the difference between the on("click") and click() methods in jQuery. click() only adds listeners for existing elements, so it…
- Pigs in namespaaaace
When you're working on a JavaScript (JS) app you'll create loads of functions and variables. By default in JS, there is no namespacing so…
- Atom snippets
One of the things I love about modern text editors is code snippets. Coding tends to involve repetition, code snippets can really help cut down…
- Selection
One thing I notice about jQuery is how it simplifies common tasks. A good example is something you do all the time with JavaScript, select DOM…
- Emmet!
Whatever your text editor of choice (I just can't quit you Atom) there is a wide range of plugins to enhance its capabilities. One such plugin…
- jQuery
What is jQuery? jQuery is a JavaScript library designed to simplify front end web development. It is the most widely deployed JavaScript library…
- We’ve all got issues
Since I’ve been learning JavaScript I’ve been making an effort to do things as if I was working with others. The idea being that any project of…