Last lesson we started to learn jquery library. In this lesson we'll continue to consider another useful functions....
JavaScript
Intro to jquery. Part one
In this lesson I begin small parts of intro to jquery tutorials. Jquery is crossbrowser javascript library. It gives to developers manipulate html content, event handlers, create animations, work with server. You can download jquery from http://jquery.com/.
Form validation with javascript
In this lesson we'll consider homework from last lesson and discuss, how to make form validation with javascript Validation is process of checking valid data form users (online payment forms, registration forms and so on). I am sure, you understand why validation is...
JavaScript. Window and document objects
In this lesson we will consider key methods and properties of document and window objects. For example, we can manipulate content of html document - add new information, make selection and muc more. With window object we can manipulate windows - open it, print window...
JavaScript events
In this lesson we'll consider different events in javascript. Event is interaction user and page (click, scroll and so on). Especially you need to notice on click event...
JavaScript. Properties and functions
In this tutorial we will discuss functions and properties. While writing code you often need to do a lot of repetitive operations. This operations are better to write into special blocks - functions. Function is subprogramm which works with any data and returns any...
JavaScript. Loops, conditions.
In this lesson we'll consider important themes in javascript and programming in general - conditions, loops, break and much more. In the beginning we will discuss unary plus and minus. You must notice several key features. unary plus has got the highest priority...
Intro to API VKontakte
In the next two or three lessons we'll discuss basics of api VKontakte using ajax knowledges, In this lesson we'll consider api app creating and installing widgets for sites URL of API VKontakte is https://vk.com/dev. You need Web section. Next you need create app in...
Javascript. Variables. Dialogs, alerts
In last lesson we began to learn javascript. Today we'll continue to discuss javascript basics - we'll talk about variables, how to declare variables, also we'll discuss 6 main types of data (number, string, boolean, null, undefined, object). Also we'll consider...