Author: elPas0
Debugger

Simply include Debugger.js in your page and all the code that you have logging to firebug’s console will now show up in Debugger. Note that if you include Debugger.js in your page and you have Firebug installed, you won’t see it. Firebug is still way better than Debugger.js, so you’ll really only use it for IE, Safari and other browsers. Continue Reading
Author: elPas0
elSelect is a great tool that allows you to visually change look and feel of usual select, keeping its functionality.
Click on screenshot to see it in action. Example will appear in a new window because it uses MooTools library which conflicts with the Prototype library used at this site. And “mootools is not trying to be conflict free” ( more info - http://forum.mootools.net/view.....#post-9356 )

Why i did it? Well, you all know that select element and IE have problems.
They are :
- SELECT ignore z-index and will display over any other position element (fixed in IE7) ,
- disabled property for OPTION tag do not work in IE
- you cant change look of standard SELECT using CSS
This class successfully solve all problems, but elSelect is still in development……
Continue Reading
Author: elPas0
Hi all. Today we will learn a bit about great javascript framework called MooTools. It’s ultra small and ultra fast :)
In this tutorial we will work with small table. Our task is to implement simple model of behavior - when our mouse is over one of cells, it will be colored in pink, other become gray. Simple, isn’t it?
In result we will get such table. Try to move mouse over it.
Continue Reading
comments