Submit Button Enabling
"Enabling" you ask?  Yes.  We all know how to disable the submit upon form submission and the reasons for doing so, but what about re-enabling the submit button after an allotted amount of time.  After all, what if the user presses the "stop" button immediately after submitting the form?  They'd be screwed.  Why not re-enable the submit button after an allotted amount of time so that the user may re-submit?
The MooTools JavaScript
window.addEvent('domready',function() {
		var subber = $('submit');
		subber.addEvent('click',function() {
			subber.set('value','Submitting...').disabled = true;
			(function() { subber.disabled = false; subber.set('value','Resubmit'); }).delay(10000); // how much time?  10 seconds
		});
	});
Of course, this isn't ideal in all situations.  It is, however, a nice touch if your system can accommodate for it.
Update:  Upon submission, the button's message changes to "submitting..." and once enabled, the message changes to "Resubmit."  Thank you to Facundo Corradini for the suggestion!
![Creating Scrolling Parallax Effects with CSS]() - Introduction
For quite a long time now websites with the so called "parallax" effect have been really popular.
In case you have not heard of this effect, it basically includes different layers of images that are moving in different directions or with different speed. This leads to a... 
![7 Essential JavaScript Functions]() - I remember the early days of JavaScript where you needed a simple function for just about everything because the browser vendors implemented features differently, and not just edge features, basic features, like - addEventListenerand- attachEvent.  Times have changed but there are still a few functions each developer should...
 
![Image Reflection with jQuery and MooTools]() - 
One subtle detail that can make a big difference on any web design is the use of image reflections.  Using them too often can become obnoxious but using reflections on large, "masthead" images is a classy enhancement.  Unfortunately creating image reflections within your... 
![Record Text Selections Using MooTools or jQuery AJAX]() - One technique I'm seeing more and more these days (CNNSI.com, for example) is AJAX recording of selected text.  It makes sense -- if you detect users selecting the terms over and over again, you can probably assume your visitors are searching that term on Google...