This is an interesting little script. I am not sure of it’s cross browser functionality. In the next few years, you will see lots of this feature on sites and…
Amazing effects with Transit (modern browsers)
This plugin has some really cool effects. I particularly like the easing functions. There are so many reasons why you should use a plugin for these types of effects. Mostly…
Responsive Headlines with slabText
Check out this awesome jQuery plugin that can help to make big, bold headlines for your responsive sites. Possible alternative to using image replacement text like cufon. Give it a…
Image of the Day: Shark Buffet
Do you think these fish are nervous? This is an awesome photo. Source: http://www.grindtv.com/outdoor/blog/50917/shark-eating+seal+among+rare+and+stunning+scenes+documented+off+south+africa/
Interesting things about HTML5
If you are one of the countless developers that are now publishing applications using HTML5 or XHTML5 then you have to know about a few new syntax options. Some of…
HTML5 Tag Reference
If you need a quick cheat sheet for HTML5 elements, use this table. It contains all the standard HTML5 elements you would use to build out a page. These items…
UNIX Timestamps and FLOT (using date.js)
Implementing FLOT charting into a project is easy and very customizable. Ive been using FLOT for a while and you can extend it to do just about anything you need…
Templating, JavaScript and Moustache.js
The ability to “templatize” HTML using javaScript isn’t a new concept but with mustache.js it is getting easier and more streamlined. Inside of the core, there are lots of functions…
Prototyping function to add commas to numbers
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 =…