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!
![I’m an Impostor]() - This is the hardest thing I've ever had to write, much less admit to myself.  I've written resignation letters from jobs I've loved, I've ended relationships, I've failed at a host of tasks, and let myself down in my life.  All of those feelings were very... 
![Create Namespaced Classes with MooTools]() - MooTools has always gotten a bit of grief for not inherently using and standardizing namespaced-based JavaScript classes like the Dojo Toolkit does.  Many developers create their classes as globals which is generally frowned up.  I mostly disagree with that stance, but each to their own.  In any event... 
![jQuery topLink Plugin]() - Last week I released a snippet of code for MooTools that allowed you to fade in and out a "to the top" link on any page.  Here's how to implement that functionality using jQuery.
The XHTML
A simple link.
The CSS
A little CSS for position and style.
The jQuery... 
![Table Cell and Position Absolute]() - If you follow me on Twitter, you saw me rage about trying to make - position: absolutework within a- TDelement or- display: table-cellelement.  Chrome?  Check.  Internet Explorer?  Check.  Firefox?  Ugh, FML.  I tinkered in the console...and cussed.  I did some researched...and I...