Skip to content

Instantly share code, notes, and snippets.

View mattclements's full-sized avatar

Matt Clements mattclements

View GitHub Profile
@mattclements
mattclements / .gitignore
Created April 12, 2012 13:28
Git Ignore File for XCode 4.X.X Projects
.DS_Store
*.swp
*~.nib
build/
xcuserdata
@mattclements
mattclements / excel-pad.txt
Created April 11, 2012 11:19
Excel Pad with Leading 0's
#Account Number
=REPT(0,8-LEN(A1))&A1
#Sort Code
=REPT(0,6-LEN(A1))&A1
@mattclements
mattclements / jquery.placeholder.js
Created March 28, 2012 08:53
Placeholder Support for IE6-8
/*
Original From: http://kamikazemusic.com/quick-tips/jquery-html5-placeholder-fix/
Additions by Matt Clements
Licence: http://mattclements.mit-license.org/
Adjusted to look at .change too
Added support for textarea's and pre-set values on fields
*/
$(document).ready(function() {