jQuery

Regular Expressions Cheat Sheet

If there's one area I have trouble remembering, it's definitely regular expressions.  Whether matching strings in javascript, C#, PHP or writing redirect conditions and rules in an .htaccess file, this is the cheat sheet to have handy!  Compliments to AddedBytes.com for making it available.

$(document).ready best practices

When writing custom jQuery scripts that fire on page load, it's always good practice to call jQuery.noConflict() before the document ready function.

jQuery.noConflict();
jQuery(document).ready(function($) {
  /*YOUR CODE HERE*/
});

For jQuery Mobile, consider:

Subscribe to RSS - jQuery