Video tutorial: Learn JavaScript & jQuery Language: German

Video tutorial: Learn JavaScript & jQuery

Web design, CMS & development 52 Videos · 10.6 h Video training · English Denis Panjuta by Denis Panjuta

Your app, your game, your website! Possible with JavaScript and jQuery - possible with this video tutorial! In over 10.5 hours you will learn how to handle all the variables, loops, functions and operators. Plus: jQuery - the library that is used on over 75 percent of the world's most successful websites. Practice directly in the tutorial with the help of practical examples.

  • 52 lessons in a 10.5+ hour video tutorial on JavaScript and jQuery
  • Learn the basics, go beyond them and then write your own programs
  • PowerPoint von A wie Animation über K wie KI bis Z wie Zoom: Grundlagen & Experten-Tipps
  • Ein über 13-stündiges Video-Training von Trainer Thomas Hruska

Realize what you have in mind! With tools that are more than suitable and with brilliant technical expertise! After this tutorial, you will be able to make full use of what JavaScript and jQuery have to offer.

content

52 Videos, 638 minutes

JavaScript Basics: Part 1

11 Videos · 130 minutes
01 Open free of charge

The ultimate training for JavaScript and jQuery - 1.1 Intro

Welcome to the ultimate JavaScript and jQuery course.

02 Open

The ultimate training for JavaScript and jQuery - 1.2 What is JavaScript?

This video explains what JavaScript is and what it can do for us.

03 Open

The ultimate training for JavaScript and jQuery - 1.3 Download from Atom.io

In this video you will learn which editor we will use and we will install it together.

04 Open

The ultimate training for JavaScript and jQuery - 1.4 Clicks and variables

This video shows how to use clicks with JavaScript and how variables work.

05 Open

The ultimate training for JavaScript and jQuery - 1.5 If and Else-If conditions

The If statement. If is used very frequently in programming. For example, if you only want to execute something if a certain condition is met.

06 Open

The ultimate training for JavaScript and jQuery - 1.6 Arrays

This video is about arrays (fields) in JavaScript. They allow us to store multiple pieces of information within a variable.

07 Open

The ultimate training for JavaScript and jQuery - 1.7 For-loop

In this video, you will learn about for-loops (loops). These allow us to execute a certain code several times in succession.

08 Open

The ultimate training for JavaScript and jQuery - 1.8 functions

Functions are a kind of mini program that we can use again at any time after we have created it. For example, if you press the home button on your cell phone, a function is called up that takes you back to your home screen. Functions therefore make your work much easier.

09 Open

The ultimate training for JavaScript and jQuery - 1.9 Challenge: Quiz, Part 1

The result of the challenge is shown here (namely a quiz) and the HTML foundation is also created.

10 Open

The ultimate training for JavaScript and jQuery - 1.10 Challenge: Quiz, part 2

The CSS (the appearance) of the quiz is programmed here.

11 Open

The ultimate training for JavaScript and jQuery - 1.11 Challenge: Quiz, part 3

The JavaScript of our quiz is programmed and explained here.

01

The ultimate training for JavaScript and jQuery - 1.1 Intro

3 min Open
02

The ultimate training for JavaScript and jQuery - 1.2 What is JavaScript?

7 min Open
03

The ultimate training for JavaScript and jQuery - 1.3 Download from Atom.io

10 min Open
04

The ultimate training for JavaScript and jQuery - 1.4 Clicks and variables

17 min Open
05

The ultimate training for JavaScript and jQuery - 1.5 If and Else-If conditions

19 min Open
06

The ultimate training for JavaScript and jQuery - 1.6 Arrays

9 min Open
07

The ultimate training for JavaScript and jQuery - 1.7 For-loop

7 min Open
08

The ultimate training for JavaScript and jQuery - 1.8 functions

10 min Open
09

The ultimate training for JavaScript and jQuery - 1.9 Challenge: Quiz, Part 1

17 min Open
10

The ultimate training for JavaScript and jQuery - 1.10 Challenge: Quiz, part 2

10 min Open
11

The ultimate training for JavaScript and jQuery - 1.11 Challenge: Quiz, part 3

21 min Open

JavaScript Fundamentals: Part 2

7 Videos · 63 minutes
12 Open

The ultimate training for JavaScript and jQuery - 2.1 Functions with multiple parameters

You have already seen how functions with one parameter work. Now let's take a look at functions with several parameters. Multiple parameters are used when you want to use a function with several different variables. In mathematics, for example, when adding several values.

13 Open

The ultimate training for JavaScript and jQuery - 2.2 Global vs. local variables

There are global and local variables. Briefly summarized: Global variables are the variables that are created outside of functions, and local variables are those that are created within functions. Here we take a closer look at how this works.

14 Open

The ultimate training for JavaScript and jQuery - 2.3 Return statement

In programming languages, it is possible to set up functions in such a way that they have a return value. So far, we have only had functions that simply executed something, but did not return anything that we could have continued working with. So now let's take a look at RETURN.

15 Open

The ultimate training for JavaScript and jQuery - 2.4 Mathematical operators and assignment operators

In this article, we will cover mathematical operators and assignment operators. The mathematical operators are quite simple things such as addition, subtraction, etc., while the assignment operators are the ability to carry out simple operations quite easily, such as increasing by 5. As both are important in programming, both topics are covered here.

16 Open

The ultimate training for JavaScript and jQuery - 2.5 Do-While and While Loop

There are three (or four) different types of loops in programming: the do-while, while and for loops. We have already learned about the For loop. Now let's look at the do-while loop (foot-controlled) and the while loop (head-controlled).

17 Open

The ultimate training for JavaScript and jQuery - 2.6 Switch and case statement

This article is about an alternative to If conditions. These are Switch and Case. In other words, you have a switch that switches through the various cases and stays with the one that is active.

18 Open

The ultimate training for JavaScript and jQuery - 2.7 More about arrays

We have already covered arrays, but have not gone into detail. There is much more to know about arrays. The most important property of a JavaScript array is the number of elements (length). However, the array also has other properties such as index, which gives us information about the position 0 of the array.

12

The ultimate training for JavaScript and jQuery - 2.1 Functions with multiple parameters

7 min Open
13

The ultimate training for JavaScript and jQuery - 2.2 Global vs. local variables

10 min Open
14

The ultimate training for JavaScript and jQuery - 2.3 Return statement

7 min Open
15

The ultimate training for JavaScript and jQuery - 2.4 Mathematical operators and assignment operators

8 min Open
16

The ultimate training for JavaScript and jQuery - 2.5 Do-While and While Loop

12 min Open
17

The ultimate training for JavaScript and jQuery - 2.6 Switch and case statement

6 min Open
18

The ultimate training for JavaScript and jQuery - 2.7 More about arrays

13 min Open

Object-oriented programming in JavaScript

7 Videos · 58 minutes
19 Open

The ultimate training for JavaScript and jQuery - 3.1 Objects in JavaScript

Objects are an extremely important and interesting concept in many programming languages. In principle, everything can be described as a kind of object. Let's take an object that we usually see on the roads: a CAR. A car has certain properties/characteristics and can perform certain actions.

20 Open

The ultimate training for JavaScript and jQuery - 3.2 Create objects

Let's take a look at how we can create objects in JavaScript. To do this, we create a constructor function and two instances of our object in our head tag. Within the constructor function, which has the same name as our object, we tell the program that the parameters passed to the constructor function when creating an instance of the object should be the values of the object.

21 Open

The ultimate training for JavaScript and jQuery - 3.3 Object functions

As a basis for functions of objects, we start with the code from the last tutorial, in which we created variables that are created for each instance of our object.

22 Open

The ultimate training for JavaScript and jQuery - 3.4 Math object

In this tutorial, you will get to know the Math object. This is an object that is based on the Math class and comes with lots of cool properties and functions.

23 Open

The ultimate training for JavaScript and jQuery - 3.5 Date object

This video is about the Date object or the Date class. These are objects that can be used to include the time in a program. This does not necessarily mean the time or date, but can also be a time span. A date object contains the time that has passed since the time 1970-01-01 00:00:00. There are various ways of passing parameters to the date constructor.

24 Open

The ultimate training for JavaScript and jQuery - 3.6 Interactive clock

In this video you will learn how to build an interactive clock with JavaScript.

25 Open

The ultimate training for JavaScript and jQuery - 3.7 Inheritance

This video is about inheritance and polymorphism. Two concepts of object-oriented programming.

19

The ultimate training for JavaScript and jQuery - 3.1 Objects in JavaScript

4 min Open
20

The ultimate training for JavaScript and jQuery - 3.2 Create objects

6 min Open
21

The ultimate training for JavaScript and jQuery - 3.3 Object functions

10 min Open
22

The ultimate training for JavaScript and jQuery - 3.4 Math object

8 min Open
23

The ultimate training for JavaScript and jQuery - 3.5 Date object

7 min Open
24

The ultimate training for JavaScript and jQuery - 3.6 Interactive clock

6 min Open
25

The ultimate training for JavaScript and jQuery - 3.7 Inheritance

17 min Open

jQuery basics

5 Videos · 36 minutes
26 Open

The ultimate training for JavaScript and jQuery - 4.1 What is jQuery?

In this article we address the question: What is jQuery? jQuery is a JavaScript library that allows us to make even cooler websites.

27 Open

The ultimate training for JavaScript and jQuery - 4.2 Clicks in jQuery

Here you will learn how to process clicks much more easily with jQuery.

28 Open

The ultimate training for JavaScript and jQuery - 4.3 Changing the look of your website with jQuery

In this tutorial, you will learn how to change the appearance of a website with jQuery. To do this, we can simply overwrite an attribute of a field, for example. In this example, we can change the link of the iframe (i.e. the src/source) by hovering over the square. You could easily change the code and, for example, enlarge the square by overwriting the height and width attributes when hovering over it. In general, you can now use this method to easily change the appearance of the website.

29 Open

The ultimate training for JavaScript and jQuery - 4.4 Content fading

One of the cool features of jQuery is to fade an element. In this example, we fade out a button as soon as we click on another button. We use the FadeOut function ("fade function"). To display the element again afterwards, we use the FadeIn function.

30 Open

The ultimate training for JavaScript and jQuery - 4.5 Animations in jQuery

In this video, we look at animation in jQuery. This is something that moves. So we make sure that an element on our website moves/changes. There is a function in jQuery for this. This is called animate() and expects three parameters.

26

The ultimate training for JavaScript and jQuery - 4.1 What is jQuery?

3 min Open
27

The ultimate training for JavaScript and jQuery - 4.2 Clicks in jQuery

9 min Open
28

The ultimate training for JavaScript and jQuery - 4.3 Changing the look of your website with jQuery

8 min Open
29

The ultimate training for JavaScript and jQuery - 4.4 Content fading

9 min Open
30

The ultimate training for JavaScript and jQuery - 4.5 Animations in jQuery

7 min Open

jQuery UI

7 Videos · 88 minutes
31 Open

The ultimate training for JavaScript and jQuery - 5.1 What is jQuery UI?

Let's take a look at what jQuery UI is.

32 Open

The ultimate training for JavaScript and jQuery - 5.2 Accordion and Theme Generator

The Accordion is a widget which, like an accordion, allows us to see only certain parts of the whole. This is particularly useful if you want to convey a lot of information, but it would be far too confusing as one large text.

33 Open

The ultimate training for JavaScript and jQuery - 5.3 Sortables

This tutorial is about sortables in jQuery UI. These are sortable elements. You know this if you use productivity websites like Wunderlist or Trello. The ability to make elements sortable is an extremely cool feature that you can use in many different applications.

34 Open

The ultimate training for JavaScript and jQuery - 5.4 Resizables

Sometimes it happens that you want to make the size of an element changeable by the user. Then resizables are just the thing. They allow you to do just that. You can see a small triangle at the bottom right of the element, which you can click on and then, if you hold down the mouse pointer, you can enlarge or reduce it.

35 Open

The ultimate training for JavaScript and jQuery - 5.5 Draggable

In jQuery UI, draggables make it very easy to build an element that can be dragged back and forth. Let's take a look at how to do this here.

36 Open

The ultimate training for JavaScript and jQuery - 5.6 Progressbar

Progress bars are a great way to show the user how far they are in a particular process. In the sales process in an online store, for example, or in a survey, it helps the user to know how far they are in completing the steps.

37 Open

The ultimate training for JavaScript and jQuery - 5.7 Effects in jQuery UI

In this tutorial, I would like to briefly discuss effects in jQuery UI. There are some pretty cool effects that make it possible to make your website look even better and also completely blow your users' socks off.

31

The ultimate training for JavaScript and jQuery - 5.1 What is jQuery UI?

4 min Open
32

The ultimate training for JavaScript and jQuery - 5.2 Accordion and Theme Generator

20 min Open
33

The ultimate training for JavaScript and jQuery - 5.3 Sortables

11 min Open
34

The ultimate training for JavaScript and jQuery - 5.4 Resizables

12 min Open
35

The ultimate training for JavaScript and jQuery - 5.5 Draggable

14 min Open
36

The ultimate training for JavaScript and jQuery - 5.6 Progressbar

17 min Open
37

The ultimate training for JavaScript and jQuery - 5.7 Effects in jQuery UI

10 min Open

Training: FAQ page

2 Videos · 34 minutes
38 Open

The ultimate training for JavaScript and jQuery - 6.1 FAQ page: Introduction

In this video you can see the result of the challenge. A FAQ page.

39 Open

The ultimate training for JavaScript and jQuery - 6.2 FAQ page: Implementation

We are implementing the FAQ page here.

38

The ultimate training for JavaScript and jQuery - 6.1 FAQ page: Introduction

4 min Open
39

The ultimate training for JavaScript and jQuery - 6.2 FAQ page: Implementation

30 min Open

Training: Skill game Brain-Game

5 Videos · 80 minutes
40 Open

The ultimate training for JavaScript and jQuery - 7.1 Brain Game: Introduction

This video introduces the brain game that is programmed in this chapter.

41 Open

The ultimate training for JavaScript and jQuery - 7.2 Brain game: HTML and CSS

First, let's take a look at the structure and appearance of the game.

42 Open

The ultimate training for JavaScript and jQuery - 7.3 Brain Game: JS and jQuery, Part 1

Now let's take a look at some of the game's functionalities.

43 Open

The ultimate training for JavaScript and jQuery - 7.4 Brain Game: JS and jQuery, Part 2, Game Start and Game Over

The player can already carry out the first actions in the game, but now we will make sure that the game can be restarted and ended correctly.

44 Open

The ultimate training for JavaScript and jQuery - 7.5 Brain-Game: JS and jQuery, part 3, Timer and completion of the game

Now it's just a matter of adding the Timer to the game to calculate the score correctly and limit the game time. We will also carry out a few more small steps to complete the game.

40

The ultimate training for JavaScript and jQuery - 7.1 Brain Game: Introduction

9 min Open
41

The ultimate training for JavaScript and jQuery - 7.2 Brain game: HTML and CSS

16 min Open
42

The ultimate training for JavaScript and jQuery - 7.3 Brain Game: JS and jQuery, Part 1

13 min Open
43

The ultimate training for JavaScript and jQuery - 7.4 Brain Game: JS and jQuery, Part 2, Game Start and Game Over

21 min Open
44

The ultimate training for JavaScript and jQuery - 7.5 Brain-Game: JS and jQuery, part 3, Timer and completion of the game

21 min Open

Training: To-do list - the jQuery Mobile program

8 Videos · 150 minutes
45 Open

The ultimate training for JavaScript and jQuery - 8.1 To-do list: Introducing the app

The app of the chapter is presented here. This is a to-do list app/website.

46 Open

The ultimate training for JavaScript and jQuery - 8.2 To-do list: Creating basics and themes

Now let's create the basis and take a look at how we can create and edit the corresponding theme with jQuery Mobile.

47 Open

The ultimate training for JavaScript and jQuery - 8.3 To-do list: Create architecture

Because we follow an OOP approach, we have to create the corresponding architecture. We take care of that here.

48 Open

The ultimate training for JavaScript and jQuery - 8.4 To-do list: adding tasks, creating pages

In this video we add the pages and take care of the page where we create tasks.

49 Open

The ultimate training for JavaScript and jQuery - 8.5 To-do-List: Editing list elements, basics

Similar to the creation page, the editing page must also be filled and given the corresponding functionality.

50 Open

The ultimate training for JavaScript and jQuery - 8.6 To-do list: Architecture and data structure

Now we can take care of the architecture again and create the data structure.

51 Open

The ultimate training for JavaScript and jQuery - 8.7 To-do list: Implementing the data structure in the UI

Now that we have our data structure, we can easily call it up in our UI.

52 Open

The ultimate training for JavaScript and jQuery - 8.8 To-do list: Bug-fixing and permanent saving

During programming, a few steps were necessary in the "explanation flow", which we can now fix. We also take care of the permanent storage of data and complete the app.

45

The ultimate training for JavaScript and jQuery - 8.1 To-do list: Introducing the app

7 min Open
46

The ultimate training for JavaScript and jQuery - 8.2 To-do list: Creating basics and themes

9 min Open
47

The ultimate training for JavaScript and jQuery - 8.3 To-do list: Create architecture

27 min Open
48

The ultimate training for JavaScript and jQuery - 8.4 To-do list: adding tasks, creating pages

28 min Open
49

The ultimate training for JavaScript and jQuery - 8.5 To-do-List: Editing list elements, basics

18 min Open
50

The ultimate training for JavaScript and jQuery - 8.6 To-do list: Architecture and data structure

18 min Open
51

The ultimate training for JavaScript and jQuery - 8.7 To-do list: Implementing the data structure in the UI

21 min Open
52

The ultimate training for JavaScript and jQuery - 8.8 To-do list: Bug-fixing and permanent saving

22 min Open
Comments (0)

Comment now „Video tutorial: Learn JavaScript & jQuery“