Twitter is a rich source of instantly updated information. It's easy to stay updated on an incredibly wide variety of topics. Join today and follow @AndyJ.
Stop people pressing return on forms
$(window).keydown(function (e) {
if (e.keyCode == 13) {
e.preventDefault();
return false;
}
}) #mean4:23 AM May 24thvia Twitter for Mac
can never get over how great/easy validateThis is. Just dropped it in on a site as some heavy duty Js validation was required.1:23 AM May 24thvia Twitter for Mac