Thanks to my predecessor Mike Grace for this helpful little script. It extends javascript to add the correct comma places to any number. Number.prototype.addCommas = function() { var nStr =…
IE8 Errors when writing to console
IE8 doenst support console.log writing. It uses just log writing. To fix this issue, simply add the following to your page scripts. if (typeof console === “undefined”) { window.console =…
Great Plugin for time differences
Here is a plugin I use for time stamping data. Mostly for things like twitter statuses and the like. Easy to use, easy to set up and works well.
Display: Run-In to simulate print style alternating text
For you designers that LOVE to run alternate size text into block level copy. CSS has a nice property developers can use to simulate that effect. Amazing that not many…
Developing HTML5 apps and Publishing to the Apple App Store
If you are not a native developer but have good JavaScript and HTML5 skills, then AppMobi is a great alternative for publishing apps to the app store and other mobile…
Are You 508 Compliant?
If you run or build a site for any organization that receives money from the federal government, you should be aware that you are legally required to be 508 compliant….
Support the Autism Research Institute
If you get a chance, please stop by the Autism Research Institute’s Facebook page and website. This organization is one I have been very supportive of and their research is…
Center Text Vertically in CSS3
So simple yet so much of a headache. Have you ever needed to center content in a div only to have it always sit on the baseline? Here is a…
Simple Tool to Collect Pinterest Pins/Boards
I created a simple tool that collects pinterest pins and boards just by typing in a pinterest user name. It uses a modified API I found at http://pinterestapi.co.uk. The drawback to…
Working with AJAX & JQuery Mobile
If you are working with JQuery Mobile, one of the most frustrating things can be loading data via ajax only to see it unformatted after the page has been executed….