JavaScript 101-#17 – Getting to know JavaScript events

Because we are in the middle of working on custom form which requires some more advanced skills in JavaScript, let’s take a look at one topic that is very important to know. If you are familiar with jQuery and wrote some code with this library, you already got in touch with our today’s subject. What… Continue reading JavaScript 101-#17 – Getting to know JavaScript events

Design custom form in CSS, JavaScript and PHP tutorial Pt2

Today we will continue in the Design custom form in CSS, JavaScript and PHP tutorial we started a day ago. For first part we already have the HTML and CSS in place and ready so today we can focus solely on JavaScript side of the project. Since we will work on JavaScript part of the… Continue reading Design custom form in CSS, JavaScript and PHP tutorial Pt2

Simple jQuery slider tutorial

Today’s post will be about creating a very simple image slider (or any kind of data) you can use in your projects. I know that there are many sliders on the web, but they are often too complicated and contain unnecessary effects and garbage code. For this reason, we will create image slider that will… Continue reading Simple jQuery slider tutorial

JavaScript 101-#16 – Switch statement

I hope that you understood and enjoyed the loops we discussed previously. The next topic in JavaScript 101 series, after loops, we will explore is “switch” statement. Curriculum for today will be all about what it is, how does it work and why it is better to use is in some cases rather than “if”… Continue reading JavaScript 101-#16 – Switch statement

JavaScript 101-#15 – Loops Pt2

Today, in part 2 of loops we will take a look at “while“ loop and its advanced sibling „do while“ loop. There will be many examples for you to practice these two types of loops and to understand them fully. “while“ and “do while“ are, after “for“ loop last available loops you can use in… Continue reading JavaScript 101-#15 – Loops Pt2

JavaScript 101-#14 – Loops Pt1

In this part of JavaScript 101 we will take a look at one thing that will help you do your work faster, better and with less code. This subject is one of the favorite for many of programmers in any programming language. Our topic for today, and probably one future post, are loops! In this… Continue reading JavaScript 101-#14 – Loops Pt1