Reading Time: 3 minutesIf you know Grunt.js, this post is for you. Grunt is a super awesome node.js-based task runner. It makes development easier, your productivity faster, and your attractiveness… attractiver. I don’t want to go through all 3,000+ reasons that Grunt is fantastic, … Continue reading
Category: JavaScript
CMS-Friendly jQuery Widgets
Reading Time: 4 minutesjQuery isn’t going anywhere. It’s the most widely used JavaScript-library, it has a huge community, and offers a plethora of plugins. With its wide-spread acceptance, it’s not surprising when CMS developers (Tridionauts and the like) get prototypes using different jQuery … Continue reading
Finding Prime Numbers with JavaScript
Reading Time: 3 minutesFeeling nerdier than usual last night, I was asking myself, and a math teacher (that’s Mrs. Jaye, to you), all sorts of questions about numbers, including prime numbers. Later on, I got to thinking: how would I determine what the … Continue reading
Page Visibility and Speech Synthesis: How to make web pages sound needy
Reading Time: 2 minutesI’ve been frustrated with a lot of different things this week, so I decided to take my mind off of things for a few minutes and play with something new today. In doing so, I may have created the most … Continue reading
Exploring the DOM: Your stylesheets are objects (document.styleSheets)
Reading Time: 4 minutesSo, I was helping out a fellow coworker with a JavaScript issue where we were trying to figure out if there was a property somewhere that could tell us what the referring window was. While he was using ‘the googles’, … Continue reading
Contenteditable, CSS, Scoped, and advanced in-browser editing
Reading Time: 4 minutesI’ve said before and I’ll say again that contenteditable is one of the coolest attributes you can apply to an element. This lil’ gem originates from Microsoft, of all places, and has been there since IE5.5. Well, the other browsers … Continue reading
JavaScript Keystroke Code Interpreter
Reading Time: < 1 minuteThere’s a few different web apps I’ve developed where I needed to use keyboard characters for shortcut keys or whatnot. I can never remember what the keystroke codes are, and I hate looking at great big charts. So I made … Continue reading
Using HTML5 LocalStorage to Protect Forms: Part 2, the jQuery plugin
Reading Time: 2 minutesOver four months ago, I posted on how to use the HTML5 localstorage API to protect forms. Quite curiously, it was five days before someone else wrote an article on the concept on Smashing Magazine. (I won’t link to it … Continue reading
HTML5 and Geolocation: Finding Yourself (Part One of Many)
Reading Time: 4 minutesIf there’s something in the HTML5 technology suite whose potential is inversely proportionate to its simplicity, it’s geolocation. The API is very simple and the opportunities haven’t begun to get tapped. My boss over at Tahzoo has a few mind-blowing … Continue reading
Using HTML5’s Localstorage API for protecting forms
Reading Time: 2 minutesOne of my new favorite features of HTML5 is the wicked awesome storage options. One of the first cool things I thought was to come up with a way to protect a user’s form information. Let’s pretend you been filling … Continue reading