Dec 22
Preloading External Images in Flash Using the...
This tutorial will teach you the basics on how to use the MovieClipLoader class to load an external image in Flash at run time.
Dec 18
Creating a Sliding Menu Using the MooTools Framework
This tutorial will teach you how to use the MooTools JavaScript Framework to create a sliding menu menu without much of hassle.
Apr 26
Fixed Position Floating Layers
This page has two floating layers. The first one is fixed to its location as defined by the inline code and the second is defined to float at the bottom of the screen by calculating an offset at load time.
Apr 15
Popup Alternatives
The use of popup blockers creates a problem for developers who need to put up supporting information on a page. So they need an alternative. A styled layer has been the popular workaround, but it is a lot of work. Not just writing the code'; it means bring the code for the popup into the [...]
Apr 8
Preload images with JavaScript
This article is talking about how to preload interface images for submit button in forms, like the one at the web.burza contact form.
Nov 26
JavaScript Object-Oriented Programming Part 2
This is part 2 of the JavaScript Object-Oriented Programming tutorial which will finish up where the previous tutorial left off.
Nov 26
JavaScript Object-Oriented Programming Part 1
It may be shocking news, but JavaScript is a very powerful object-based (or prototype-based, whatever you wish to call it) language. Yes, JavaScript is a powerful language, not just something that's handy for image rollovers and other corny, flashy effects. However, very few people who have used JavaScript realize its capabilities. If you're one of [...]
Nov 25
Mouse wheel programming in JavaScript
This JavaScript tutorial will show you how to include a mouse wheel event handler in your scripts. This is very useful if you are programming a web application using AJAX. If you need a mouse wheel event handler for your script, check out this tutorial.
Nov 5
CSS Photo Shuffler
This will show you how to create an interesting photo fade effect. It will show a set of images fading in succession from one to the next. Very useful for creating a slide show type gallery.
Oct 30
Dynamic CSS file loading
Gives you the ability to dynamically include a CSS file at any time in your HTML page using Javascript.
Oct 10
9 JavaScript Tips You May Not Know
JavaScript is a fully-featured Object-Oriented programming language, on the surface, it shares syntactical similarities with Java and C, but the mentality is quite different, at its core, JavaScript is more similar to functional languages. Inside is a list of JavaScript tips.
Sep 20
Binary & Bitwise Operators
This tutorial will first show you how to convert numbers into their binary values, and then take you through the bitwise operators, showing you how they work. This is the same for other languages like PHP also.
Sep 11
JavaScript: Form Validation
Client side form validation usually done with javascript. For the majority of your users, JavaScript form validation will save a lot of time up front.
Aug 14
Separating behavior and structure
In my opinion, recent advances in JavaScript theory call for the removal of the event handlers that some Web developers—and all WYSIWYG editors—deploy in large masses in their XHTML files, where they don’t belong.
Aug 4
innerXHTML
Three functions that should be used as a replacement to the innerHTML function provided by JavaScript. This uses the DOM structure to get the XHTML as a string from the HTML object. The getAttribute and trim funcions are the only functions used by innerXHTML being the key function.