Entries in the ‘Development’ Category:

Working out the Internet Explorer Bugs

I code on a Mac and test in Firefox during the majority of the development process. I do have a PC, sitting in the corner of my office, which I use to test code periodically to make sure everything also works in IE. (I also test Safari, Opera, Chrome and, if I’m feeling [...]

Comments (2)

First Stab at Putting the V in MVC

Download code
OK, so here’s my first stab at creating an MVC View in JavaScript. It doesn’t do much yet (especially since I have no Controller or Model to integrate with), but I think you’ll get the idea of where I’m going with this. Whether its the right way to go or not remains [...]

Leave a Comment

Even More JavaScript Extensions: Dates

Download code
Continuing with JavaScript extensions, I’ve created a set of extensions to the Date data type. These include some functions for date calculations, comparisons and formatting. I’ve also added a new function to the String data type that will convert a string into a Date object.
Extensions to the Date object
Let’s start with the [...]

Tags:

Comments (2)

More JavaScript Extensions, and a Library Framework

Download code
As I mentioned in my previous post, I’m in the process of creating some JavaScript functions that extend the basic JavaScript data types. Well, I’ve create a few extensions for the String and Number data types. Also, since I’m building a JavaScript library, I went ahead and packaged the source code files [...]

Tags:

Leave a Comment

JavaScript Extensions

Download code
I’ve created a few JavaScript functions that I find tend to come in handy when programming. I call them “extensions” because they extend the base window object with additional functions. I debated on namespacing these, but find that either they are used often enough that having to type a namespace every time [...]

Tags:

Leave a Comment