Posts Tagged ‘framework’

Zepto.js

The Zepto.js library

Recently we had to work on the project, which used the Zepto.js in frontend layer. This library intrigued me, so I decided to write a few words about it. Zepto.js Zepto.js is a lightweight JavaScript framework, which is doing very well, especially in the WebKit-based browsers. It has syntax mostly compatible with jQuery. So, for […]

jQuery tips and tricks

In today’s article we’ll do a small review of interesting jQuery tips. The framework itself gives the programmer a gigantic possibilities, that still can be extended through tricks and best practices. jQuery tips This time we focus more on practice and examples, rather than theory. Tip 1. Determine the size of our document In details, […]

On the borderline — CSS and JavaScript

Working with JavaScript often is associated with CSS. And thanks to that, we can acquire practice in the use of CSS, even if we don’t deal directly with creating layouts. CSS and JavaScript Good CSS skill broadens our horizons, and helps in developing quick solutions and tricks. CSS For a good start — rotate an […]

XML in JavaScript

In this article we take a look on how to work with XML in JavaScript. About the processing of XML in JavaScript we already mentioned in an introduction to AJAX. Today we go further, and of course will try to find solutions that help us in tasks related to XML. XML in JavaScript Though in […]

I18n in JavaScript

I18n so internationalization, and also L10n, are important issues, whenever we create applications targeted for users from many countries. I18n in JavaScript Certainly, many solutions such as frameworks, SDKs for mobile apps and programming languages, have support for multiple languages ​​in developed application. Today we try to find such solutions in JavaScript. We look at […]

Mouse and keyboard in JavaScript

Welcome to the article, in which we will try to comprehensively but succinctly talk about working with the mouse and keyboard in JavaScript. We will also see how popular frameworks can help us. Handling mouse and keyboard in JavaScript Considerations we should start with events, because processing data from basic input devices will be based […]

Date and time functions in JavaScript

Today we take a closer look at ready-made tools to assist us in working with date and time. So libraries with functions to operate on date and time in JavaScript; formating, parsing, comparing, etc. We already talked about basics of date and time functinos in JavaScript here. Now we turn to the more advanced tools. […]

jQuery tutorial: own tooltips

Today we recommend the jQuery tutorial, that shows how to create own ToolTips. In four easy steps. jQuery tutorial — creating own tooltips Source available: here. Step 1 — the project Create a new project (e.g. in Aptana IDE) or simply create a structure as below: Step 2 — the view We create the basic […]

Adobe AIR tutorial: an application to backup files on the server

Some time ago I decided to write a simple application to backup files quickly, and place them on my server. I created with program using Adobe AIR (and PHP for a small backend). Adobe AIR tutorial — creating a real application We will read here, among others, about Drag&Drop, communication with the server, and handle […]

We explore Adobe AIR. Windows, menus, XHR.

Previously we talked about Adobe AIR basics, including preparation of development environment. It’s time for the next article, and more practice. We will work with windows and XHR calls (yes, we can enjoy AJAX in AIR apps). Working with windows in Adobe AIR Creating a window looks exactly the same as it is in classic […]