Here’s a cool jQuery snippet that you can use to create a click counter. The way it works is that each time an element is clicked, the counter (which starts at 0) goes up by one. The counter can be applied to the clicking of any particular elements or multiple elements, and you can choose whether …
5 Best Free Resources For Learning Java
If you’re looking to learn Java, you’re in luck — the internet is practically bursting with free tutorials, interactive lessons, comprehensive courses, and video classes meant to teach Java to complete beginners. In fact, there are so many options that it may very well be overwhelming for you to choose which way you want to …
JavaScript Snippets: Close Window
A close window command is really easy and simple to write in jQuery, but some developers may not know that it’s also very easy to write in plain JavaScript. The benefits of writing a command in plain JavaScript over jQuery are that writing plain code (without having to link to a jQuery library) is usually …
3 Best Free FTP Clients for Windows and Mac Users
If you’re a developer, there’s a good chance that you rely on some sort of FTP client to give you live access to a remote server. An FTP client allows you to access any remote server as long as you have the correct credentials. From the server, you can add, remove, or edit any of …
Using Next.js
Next.js is a small, open-source framework meant for server-rendered universal JavaScript web apps. It’s built on top of React, Webpack, and Babel. It requires zero set up, is pure JavaScript (it uses Glamor to handle CSS rather than dealing with standalone CSS files), and has an easy and simple deployment process. According to the developers at ZEIT, …
5 jQuery Plugins for Form Validation
Writing your own custom validation rules is sometimes necessary, but it can also be really time-consuming. Any of the following lightweight plugins will do most of the validation code writing for you. 1. quickValidation.js quickValidation allows you to define the validation rules directly within the HTML input tags. You can also use this plugin to …
5 Plugins to Post JavaScript Code Snippets on your WordPress Site
Are you a Java developer that runs a tutorial site or writes the occasional tut? If you are, you might be on the lookout for some easy ways to post formatted code snippets into your WordPress posts. Take a look at any of these plugins to learn more about how to easily add JavaScript code …
Getting to Know the Difference Between the let and var Keywords
Essentially, the keywords let and var serve the same purpose as each other in JavaScript, but they are used in different contexts. When used outside of a function block, the var and let keywords are actually exactly the same. It’s when they are used within a function that they differ from each other. The var …