Category Archives: JavaScript

Thoughts on Private in JS

When you get into a bit higher end JavaScript patterns, one thing you’ll read very early on is this concept: that although JavaScript does not have private members or access modifiers, it is possible to achieve this behavior with closures. … Continue reading

Posted in JavaScript | 23 Comments

CSS Roadblock

Generally I like to use my blog for dispensing knowledge, advice, opinions, thoughts, musings, and of course, FACTS. But occasionally I get stuck on a point and all my research leads me to a dead end, and I’ll write a … Continue reading

Posted in JavaScript, Uncategorized | 20 Comments

JavaScript Code Reuse: Object.create

FACT: After my post of a few days ago, I’m going to try to avoid beginning blog posts with the word “FACT”. I think labeling something as an ALL-CAPS FACT is just taunting someone to come along and dispute whatever … Continue reading

Posted in JavaScript | 22 Comments

Backbone, Underscore, and Require

As interesting as this problem was to solve, it seems I could have solved it easier by grabbing the latest version of underscore, which does indeed define _ on global even when loaded via Require.js. Anyway, I learned a lot … Continue reading

Posted in JavaScript | 3 Comments

JavaScript Classes

Facts. Fact: JavaScript is an object oriented language. Fact: JavaScript does not have classes. Fact: JavaScript is dynamic and expressive enough to create structures that emulate classes. Beyond those three facts, everything else here will be theory or opinion. Expansion … Continue reading

Posted in JavaScript, Uncategorized | 26 Comments

Foundation HTML5 Animation with JavaScript

I’m very happy to announce the release of this book, and need to say a few things about it. First, this is a direct JavaScript port of my previous books, Foundation ActionScript Animation: Making Things Move!, and Foundation ActionScript 3.0 … Continue reading

Posted in JavaScript | 8 Comments

JavaScript Drag and Drop DOM Elements

File this under “really writing this for myself so I can refer back to it later.” [php lang=”JavaScript”]window.onload = function() { var foo, offsetX, offsetY; // so it exists foo = document.createElement(“div”); document.body.appendChild(foo); // so we can see it: foo.style.width … Continue reading

Posted in JavaScript | 3 Comments

Sublime Text 2 HTML Template and Build System

I’ve been doing a lot of HTML/JS development lately. My editor of choice these days is Sublime Text 2. A really great editor with loads of features and nearly infinite customization ability. But, as I’m doing a lot of learning … Continue reading

Posted in JavaScript | 13 Comments

MinimalCompsJS 0.1 Release

Well, it’s high time I got these out there so people can use them. See them in action: http://www.bit-101.com/MinimalCompsJS/release/0.1/ I’ve combined all the files into one and minified it so you only need to include a single file, plus jQuery. … Continue reading

Posted in Components, JavaScript | 3 Comments

MinimalCompsJS Preview #2

Just uploaded an update to the MinimalCompsJS project. The demo looks pretty much the same as the last one, but the components are completely refactored. Now, each component creates its own individual canvas element and adds it to a div … Continue reading

Posted in Components, JavaScript | 1 Comment