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!
![Create a CSS Cube]()
CSS cubes really showcase what CSS has become over the years, evolving from simple color and dimension directives to a language capable of creating deep, creative visuals.  Add animation and you've got something really neat.  Unfortunately each CSS cube tutorial I've read is a bit...
![Convert XML to JSON with JavaScript]()
If you follow me on Twitter, you know that I've been working on a super top secret mobile application using Appcelerator Titanium.  The experience has been great:  using JavaScript to create easy to write, easy to test, native mobile apps has been fun.  My...
![Implement jQuery’s hover() Method in MooTools]()
jQuery offers a quick event shortcut method called hover that accepts two functions that represent mouseover and mouseout actions.  Here's how to implement that for MooTools Elements.
The MooTools JavaScript
We implement hover() which accepts to functions;  one will be called on mouseenter and the other...
![Element Position Swapping Using MooTools 1.2]()
We all know that MooTools 1.2 can do some pretty awesome animations.  What if we want to quickly make two element swap positions without a lot of fuss?  Now you can by implementing a MooTools swap() method.
MooTools 1.2 Implementation
MooTools 1.2 Usage
To call the swap...