Author: elPas0
Today I needed to write a regular expression. I made it quickly, but it needs
check. Create a simple page, load it on server - no time :) + i am a bit lazy.
So i decide to check it online and quickly found some online services to do it.
- Rexv.org - This site is a Regular Expression evaluator for three different regular expression systems: PHP PCRE, PHP Posix & Javascript
- Regexpal.com - javascript only regular expressions
- Java regexp - Java check
- REGex Tester. Has all: RCPE, POSIX & JavaScript
And really useful thing for writing regular expressions - Regular Expressions Cheat Sheet
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
comments